Anchor | ||||
---|---|---|---|---|
|
Table of Contents | ||
---|---|---|
|
Overview
Installer properties are the key to customising the Yellowfin installer. Different properties are used to make different changes to the installer, including:
...
The Installer Properties are grouped into the following pages:
- User Optionsユーザーオプション,
- Installer Look-And-Feelインストーラーのルックアンドフィール,
- Installer Behaviourインストーラーの動作,
- Yellowfin ConfigurationYellowfinの設定, and
- Appendix - All Installer Properties List付録 - すべてのインストーラープロパティのリスト
Providing Values for Installer Properties
...
Installer properties may be provided as command-line arguments when running the installer. The general usage is:
Code Block | ||||
---|---|---|---|---|
| ||||
java -jar yellowfin-yyyymmdd-full.jar [-cmd|-gui] [property ...]
java -jar yellowfin-yyyymmdd-full.jar -silent [silentpropertiesfile [property ...]]
|
...
For example:
Code Block | ||||
---|---|---|---|---|
| ||||
java -jar yellowfin-yyyymmdd-full.jar option.serverport=80 option.winservice=true
|
...
The silent installer properties file must exist on the file system of the computer being installed onto. The file name must be the first argument after the -silent switch:
Code Block | ||||
---|---|---|---|---|
| ||||
java -jar yellowfin-yyyymmdd-full.jar -silent install.properties
|
When passing command-line arguments to the silent installer, you must include a silent installer properties file as the first argument before any additional options, even if it is just an empty file. The following will not work:
Code Block | ||||
---|---|---|---|---|
| ||||
java -jar yellowfin-yyyymmdd-full.jar -silent option.serverport=8090
|
...
Example
Code Block | ||||
---|---|---|---|---|
| ||||
InstallPath=/applications/yellowfin
InstallTutorialDatabase=true
ServicePort=8080
InstallService=false
DatabaseType=MySQL
CreateYellowfinDB=true
CreateYellowfinDBUser=talse
DatabaseHostname=localhost
DatabaseName=yellowfin
DatabaseDBAUser=root
DatabaseDBAPassword=secret
DatabaseUser=yf
DatabasePassword=
|