sap install for redhat linux
安装环境及软件:
Red Hat Enterprise Linux Server release 5.3
SAP NetWeaver 7.0 Support Release 3
Oracle Database 10g Release 2 (10.2.0.1.0) for Linux x86-64
软件位置
/usr/src/sap
需要安装的包:(建议使用yum)
compat-libstdc++-33-3.2.3-61.i386.rpm
j2re-1_4_2_14-linux-i586.bin
jdk-6u14-linux-x64-rpm.bin
libXp-1.0.0-8.1.el5.i386.rpm
saplocales-2.5-2.x86_64.rpm
xorg-x11-deprecated-libs-6.9.0-1.112.16.14asp.i386.rpm
安装前的准备
关闭不需要的服务
# ntsysv
关闭 SELinux、iptable
# vim /etc/selinux/config
将:SELINUX=enforcing
改为:SELINUX=disable
#service iptables stop
定时校正服务器时钟,定时与中国国家授时中心授时服务器同步
# crontab -e
----------------------------------------------------------
加入一行:
1 */6 * * * ntpdate 210.72.145.44 > /dev/null 2>&1
------------------------------------------------------
编译JDK环境
#vim /etc/profile 添加如下行
---------------------------------------
#set java environment
export JAVA_HOME=/usr/java/jdk1.6.0_14
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$JAVA_HOME/bin:$PATH
#export DISPLAY=IP:0.0
--------------------------------------
Hostname
#cat /etc/sysconfig/network
----------------------------------------
NETWORKING=yes
NETWORKING_IPV6=no
HOSTNAME=hostname
----------------------------------------
#cat /etc/hosts
--------------------------------------------------
127.0.0.1 localhost.localdomain localhost
XXXXXXXX hostname.com hostname
--------------------------------------------------
Kernel
#vim /etc/sysctl.conf
--------------------------------------------------
# SAP settings
kernel.msgmni=1024 系统消息队列的上限数目范围
kernel.sem=1250 256000 100 1024 (在最后)
vm.max_map_count=300000 一个进程所拥有的内存地址区域数(我的理解)
#Add this line (Oracle settings)
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.shmall = 2097152
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 262144
net.core.rmem_max = 262144
net.core.wmem_default = 262144
net.core.wmem_max = 262144
--------------------------------------------------
#sysctl -p
limits
#vim /etc/security/limits.conf
--------------------------------------------------
@sapsys hard nofile 32800 #hard 硬限制
@sapsys soft nofile 32800 #soft 软限制
@dba hard nofile 32800 #nofile 打开文件的最大数
@dba soft nofile 32800
--------------------------------------------------
SAP 和oracle 安装都必须是图形化界面安装
window xmanager + putty(或其他终端软件) 远程桌面
运行Xbrowser创建一个新的会话,点击属性设置好相关选项
#export DISPLAY=IP:0.0
#xhost +IP
#gnome-session
linux 远程桌面方法
#xinit -- :1
#xhost + IP(serverIP)
#ssh IP
#export DISPLAY="IP:1"(clientIP)
#gnome-session
目录及相关权限
#mkdir /oracle
#chmod 777 /oracle/
#chmod 777 /usr/src/sap/
#chmod 744 sapinst
开始安装
#dir/sapinst
后面就是图形化操作,根据自己的DB以及其他要求一步一步的安装就OK
安装环境及软件:
Red Hat Enterprise Linux Server release 5.3
SAP NetWeaver 7.0 Support Release 3
Oracle Database 10g Release 2 (10.2.0.1.0) for Linux x86-64
软件位置
/usr/src/sap
需要安装的包:(建议使用yum)
compat-libstdc++-33-3.2.3-61.i386.rpm
j2re-1_4_2_14-linux-i586.bin
jdk-6u14-linux-x64-rpm.bin
libXp-1.0.0-8.1.el5.i386.rpm
saplocales-2.5-2.x86_64.rpm
xorg-x11-deprecated-libs-6.9.0-1.112.16.14asp.i386.rpm
安装前的准备
关闭不需要的服务
# ntsysv
关闭 SELinux、iptable
# vim /etc/selinux/config
将:SELINUX=enforcing
改为:SELINUX=disable
#service iptables stop
定时校正服务器时钟,定时与中国国家授时中心授时服务器同步
# crontab -e
----------------------------------------------------------
加入一行:
1 */6 * * * ntpdate 210.72.145.44 > /dev/null 2>&1
------------------------------------------------------
编译JDK环境
#vim /etc/profile 添加如下行
---------------------------------------
#set java environment
export JAVA_HOME=/usr/java/jdk1.6.0_14
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$JAVA_HOME/bin:$PATH
#export DISPLAY=IP:0.0
--------------------------------------
Hostname
#cat /etc/sysconfig/network
----------------------------------------
NETWORKING=yes
NETWORKING_IPV6=no
HOSTNAME=hostname
----------------------------------------
#cat /etc/hosts
--------------------------------------------------
127.0.0.1 localhost.localdomain localhost
XXXXXXXX hostname.com hostname
--------------------------------------------------
Kernel
#vim /etc/sysctl.conf
--------------------------------------------------
# SAP settings
kernel.msgmni=1024 系统消息队列的上限数目范围
kernel.sem=1250 256000 100 1024 (在最后)
vm.max_map_count=300000 一个进程所拥有的内存地址区域数(我的理解)
#Add this line (Oracle settings)
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.shmall = 2097152
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 262144
net.core.rmem_max = 262144
net.core.wmem_default = 262144
net.core.wmem_max = 262144
--------------------------------------------------
#sysctl -p
limits
#vim /etc/security/limits.conf
--------------------------------------------------
@sapsys hard nofile 32800 #hard 硬限制
@sapsys soft nofile 32800 #soft 软限制
@dba hard nofile 32800 #nofile 打开文件的最大数
@dba soft nofile 32800
--------------------------------------------------
SAP 和oracle 安装都必须是图形化界面安装
window xmanager + putty(或其他终端软件) 远程桌面
运行Xbrowser创建一个新的会话,点击属性设置好相关选项
#export DISPLAY=IP:0.0
#xhost +IP
#gnome-session
linux 远程桌面方法
#xinit -- :1
#xhost + IP(serverIP)
#ssh IP
#export DISPLAY="IP:1"(clientIP)
#gnome-session
目录及相关权限
#mkdir /oracle
#chmod 777 /oracle/
#chmod 777 /usr/src/sap/
#chmod 744 sapinst
开始安装
#dir/sapinst
后面就是图形化操作,根据自己的DB以及其他要求一步一步的安装就OK
编辑回复