30日間の無料評価版をお試しいただけます。

概要

カスタムのプロパティファイルで指定できるすべてのオプションは、コマンドライン引数としても設定できます。コマンドライン引数として指定されるオプションは、カスタムのプロパティファイルで設定されるオプションよりも優先します。空白文字または特殊なシェル文字が値に含まれる場合は、値に必要なエスケープ処理を実行してください。これらの例では、選択したオプションをコマンドラインで指定してインストーラーを起動するコマンドを示します(それぞれのコマンドは1行で表記する必要がありますが、ここではわかりやすくするために複数の行で表しています):

java -jar yellowfin-yyyymmdd-full.jar
	lang=en
	option.winservice=true
	option.serverport=8090
	"installer.title.msg=Welcome to the Yellowfin installer"

yellowfin-yyyymmdd-full.exe
	lang=en
	option.winservice=true
	option.serverport=8090
	"installer.title.msg=Welcome to the Yellowfin installer"

-gui、-cmd、または-silentスイッチを使用する場合、これらはインストーラーファイルの後の最初の引数にする必要があります:

java -jar yellowfin-yyyymmdd-full.jar -cmd
	lang=en
	option.winservice=true
	option.serverport=8090
	"installer.title.msg=Welcome to the Yellowfin installer"