Home | 简体中文 | 繁体中文 | 杂文 | Search | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 作品与服务 | Email

第 25 章 IBM WebSphere

目录

25.1. WebSphere Commerce Engerprise 7.0
25.2. UpdateInstaller (AppServer, Plugins, IBMIHS)
25.2.1. WAS
25.2.2. Plugins
25.2.3. IHS
25.2.4. backup
25.3. UpdateInstaller (CommerceServer70)
25.4. WebSphere Commerce Engerprise 7.0 Feature Pack 2.iso
25.5. creating a WebSphere Commerce instance
25.6. enableFeature
25.6.1. foundation
25.6.2. management-center
25.6.3. store-enhancements
25.6.4. checkEnablementStatus
25.6.5. check version
25.7. Start IBMIHS and AppServer
25.7.1. IBMIHS
25.7.2. AppServer
25.7.3. Starting and stopping the WebSphere Commerce Information Center
25.7.4. 管理入口
25.8. Initialization store

25.1. WebSphere Commerce Engerprise 7.0

设置语言

# locale
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LC_ALL=
		

我使用英文UTF-8,如需更改使用下面命令

		
LANG=xx_XX
export LANG

LC_ALL=xx_XX
export LC_ALL

echo $LANG
		
		

/etc/profile

		
export TMP=/tmp
export TMPDIR=/tmp
export ORACLE_BASE=/opt/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0.1/client
export PATH=$ORACLE_HOME/bin:$PATH

export JAVA_HOME=/opt/IBM/WebSphere/AppServer/java
export CLASSPATH=$JAVA_HOME/lib:$JAVA_HOME/jre/lib:$CLASSPATH
export PATH=$PATH:$JAVA_HOME/bin:$JAVA_HOME/jre/bin:$HOMR/bin
		
		

/etc/hosts

		

echo "127.0.0.1    wcs.example.com" >> /etc/hosts

hostname wcs.example.com

# grep HOSTNAME  /etc/sysconfig/network
HOSTNAME=wcs.example.com
		
		

创建一个非root用户

		
adduser wcuser
echo "wcuser:passw0rd" | chpasswd
		
		

		
yum install -y compat-db libXp rpm-build elfutils elfutils-libs
./setup.sh
		
		

安装依赖软件,后Back在Next一次

		
rpm -ivh libXp-1.0.0-8.1.el5.i386.rpm libXp-1.0.0-8.1.el5.x86_64.rpm
# rpm -ivh compat-db*
Preparing...                ########################################### [100%]
   1:compat-db              ########################################### [ 50%]
   2:compat-db              ########################################### [100%]
		
		

忽略提示下一步

comments powered by Disqus