Previous Topic: WindowsNext Topic: Select a Language


UNIX

You can install language packs with one command by specifying parameters on the command line (a silent installation). When parameters are supplied on the command line the installation does not prompt for information.

The command-line syntax for a silent install is as follows:

install.sh BUSINESS_OBJECTS_HOME_DIR
INSTALLMODE=silent,install
CMSNAMESERVER=CMS_HOSTNAME
CMSPORTNUMBER=PORT_NUMBER
CMSPASSWORD=CMS_PASSWORD

Replace BUSINESS_OBJECTS_HOME_DIR with the full path of your BusinessObjects Enterprise installation.

The parameters used by install.sh are as follows:

INSTALLMODE

Switch to enable silent install mode

Extended argument: silent

CMSNAMESERVER

Enter the name of your CMS computer.

Extended argument: CMS Hostname

CMSPORTNUMBER

CMS port number.

Extended argument: Port number for CMS

CMSPASSWORD

The password for your CMS server.

Extended argument: CMS admin password

You must also specify parameters for your web application server. The specific parameters that you must use depend on the web application server that you use.

For example, on WebLogic 9.2:

$ ./install.sh /opt/bobje
INSTALLMODE=silent,install
CMSNAMESERVER=myserver1
CMSPORTNUMBER=6400
CMSPASSWORD=mypassword
AS_SERVER=weblogic9
AS_DIR=/opt/bea/user_projects/domains/base_domain
AS_INSTANCE=AdminServer
AS_ADMIN_PORT=7001
AS_ADMIN_USERNAME=weblogic
AS_ADMIN_PASSWORD=weblogic

To uninstall language packs, use the wdeploy undeployall command to remove all web applications, then wdeploy deployall to redeploy web applications without the language packs.

For example, the following command runs undeployall for a WebLogic 10 server:

wdeploy.sh weblogic10
-Das_dir=/opt/bea/user_projects/domains/base_domain
-Das_admin_port=7001
-Das_instance=AdminServer
-Das_admin_username=weblogic
-Das_admin_password=weblogic
undeployall

Followed by:

wdeploy.sh weblogic10
-Das_dir=/opt/bea/user_projects/domains/base_domain
-Das_admin_port=7001
-Das_instance=AdminServer
-Das_admin_username=weblogic
-Das_admin_password=weblogic
deployall