Like what you see? Have a play with our trial version.

Error rendering macro 'rw-search'

null

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleInstaller Behaviour

These properties change the behaviour of the installer.

Code Block
none
none
# don't show the style update panel
action.hidestylepanel=true


See below for further information.

 


Updating a Specific Component

...

java -jar update.jar -silent "YFPath" option.upgrade=database

Where, option.upgrade specifies the component to be upgraded. You can use the keyword ‘filesystem’ to update the Yellowfin file system.

...

  • option.upgrade - set this to the keyword ‘database’ to update the configuration database, or ‘filesystem’ to update Yellowfin files. For example, option.update=database.

  • jdbcUser - Username username to connect to the Yellowfin configuration database (not required when updating the file system.)

  • jdbcPassword - the password to the above (should not be encrypted)

  • jdbcURL - The the JDBC connection URL. Lets the system know specific database details, such as its type and name, server URL, connection port. (tipTip: if you do not know this, you can manually retrieve this from the web.xml file from your Yellowfin folder.)

...

Condition 3: You want to use a different driver to connect to the database, or provide your own jar file. This requires passing the driver to be used, in conjunction with the other parameters. (Note: ensure Ensure that the driver you upload belongs to a database supported by Yellowfin. ) (Also note Note that you will not be able to use the use java -jar classpath.)

Example:

java -cp mysql-connector-java-5.1.25-bin.jar:yellowfin-20180402-update.jar com.hof.patch.PatchInstaller -silent option.upgrade=database jdbcUser=yellowfin jdbcPassword=password jdbcURL=jdbc:mysql://localhost:3306/yellowfin_74_master jdbcDriver=com.mysql.jdbc.Driver

...