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

概要

サイレントインストールを使用するときは、追加のプロパティファイルを指定できます。過去の経緯から、このファイル内のプロパティの名前は異なっていますが、カスタムプロパティファイルと同じ値にマップします。サイレントインストーラーのプロパティファイルは、インストール先コンピューターのファイルシステム上に存在する必要があります。ファイル名は、-silentスイッチの後の最初の引数にする必要があります:

java -jar yellowfin-yyyymmdd-full.jar -silent install.properties

java -jar yellowfin-yyyymmdd-full.jar -silent install.properties
	option.winservice=true
	option.serverport=8090

コマンドライン引数をサイレントインストーラーに渡すときは、たとえ空のファイルであっても、サイレントインストーラーのプロパティファイルを、他のオプションよりも前に最初の引数として含める必要があります。以下は動作しません:

java -jar yellowfin-yyyymmdd-full.jar -silent
	option.winservice=true
	option.serverport=8090

サイレントインストーラーのプロパティファイル内のプロパティ名:

サイレントインストーラーのプロパティファイル

カスタムプロパティファイル

JavaHome

option.javahome

InstallPath

option.installpath

ExtractOnly

action.nodbaccess

InstallTutorialDatabase

option.pack.tutorial

InstallUsageReports

option.pack.usage

InstallJapaneseLangPack

option.pack.lang.ja

InstallSpanishLangPack

option.pack.lang.es

InstallFrenchLangPack

option.pack.lang.fr

InstallPortugueseLangPack

option.pack.lang.pt

InstallChineseLangPack

option.pack.lang.zh

LicenceFilePath

option.licencefile

ServicePort

option.serverport

InstallService

option.winservice

DatabaseType

option.db.dbtype

Authentication

option.db.sqlauthtype

LogonDomain

option.db.sqldomain

InstanceName

option.db.sqlinstance

ProgressDriver

option.db.progressdriver

CreateYellowfinDB

option.db.createdb

CreateYellowfinDBUser

option.db.createuser

DatabaseHostname

option.db.hostname

DatabasePort

option.db.port

DatabaseName

option.db.dbname

DatabaseDBAUser

option.db.dbausername

DatabaseDBAPassword

option.db.dbapassword

DatabaseUser

option.db.username

DatabasePassword

option.db.userpassword

サイレントインストーラーのプロパティファイルの例:

InstallPath=/applications/yellowfin
InstallTutorialDatabase=True
InstallUsageReports=True
InstallJapaneseLangPack=False
InstallSpanishLangPack=False
ServicePort=8080
InstallService=False
DatabaseType=MySQL
CreateYellowfinDB=True
CreateYellowfinDBUser=False
DatabaseHostname=localhost
DatabaseName=yellowfin
DatabaseDBAUser=root
DatabaseDBAPassword=
DatabaseUser=yf
DatabasePassword=secret