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

Versions Compared

Key

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

Anchor
top
top

...

概要

Styleclass
ClasstopLink

top

ページトップ

サイレントインストールを使用するときは、追加のプロパティファイルを指定できます。過去の経緯から、このファイル内のプロパティの名前は異なっていますが、カスタムプロパティファイルと同じ値にマップします。サイレントインストーラーのプロパティファイルは、インストール先コンピューターのファイルシステム上に存在する必要があります。ファイル名は、-silentスイッチの後の最初の引数にする必要があります:An additional properties file may be specified when using silent installation. For historical reasons, the properties in this file have different names, but map to the same values as the custom properties file. 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
none
none
java -jar yellowfin-yyyymmdd-full.jar -silent install.properties

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

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
none
none
java -jar yellowfin-yyyymmdd-full.jar -silent
	option.winservice=true
	option.serverport=8090

Expand
title

...

Property names in the silent installer properties file:

プロパティ

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

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

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

...

Silent Installer Properties File

...

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

Example

サイレントインストーラーのプロパティファイルの例:An example silent installer properties file:

Code Block
none
none
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

...

horizontalrule
Styleclass
ClasstopLink

topページトップ