- 1、本文档共14页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
oracle客户端安装-Red Hat 5.8
ORACLE 客户端安装(RH5.8平台)
将oracle11.2.2的32bitclient包,上传到服务器
安装32位
Red Hat Enterprise Linux Server release 5.8 (Tikanga)
安装系统环境准备
修改内核文件
编辑
# vim /etc/sysctl.conf
# Kernel sysctl configuration file for Red Hat Linux
#
# For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and
# sysctl.conf(5) for more details.
# Controls IP packet forwarding
net.ipv4.ip_forward = 0
# Controls source route verification
net.ipv4.conf.default.rp_filter = 1
# Do not accept source routing
net.ipv4.conf.default.accept_source_route = 0
# Controls the System Request debugging functionality of the kernel
kernel.sysrq = 0
# Controls whether core dumps will append the PID to the core filename
# Useful for debugging multi-threaded applications
kernel.core_uses_pid = 1
# Controls the use of TCP syncookies
net.ipv4.tcp_syncookies = 1
# Controls the maximum size of a message, in bytes
kernel.msgmnb = 65536
# Controls the default maxmimum size of a mesage queue
kernel.msgmax = 65536
# Controls the maximum shared segment size, in bytes
kernel.shmmax = 4294967295
# Controls the maximum number of shared memory segments, in pages
kernel.shmall = 268435456
fs.file-max = 6815744
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.wmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_max = 1048576
kernel.sem = 250 100
使修改的内核生效
# sysctl -p /etc/sysctl.conf 或者 重启系统 (二选一)
检查需要的补丁包
# rpm -q gcc make binutils openmotif setarch libXp sysstat libaio
若补丁包没有安装可到系统安装盘下找进行安装
# /usr/sbin/groupadd oinstall
# /usr/sbin/groupadd dba
# /usr/sbin/useradd -m -g oinstall -G dba oracle
检查oracle是否成功创建
# id oracle
uid=505(oracle) gid=506(oinstall) groups=506(oinstall),507(dba)
设置oracle用户密码
# passwd oracle
设置oracle安装目录
创建oracle安装目录
# mkdir -p /opt/u01/oracle
上传oracleclient-32bit安装文件
解压安装包
# unzip linux.32bit_11gR2_client.zip (文件名是具体情况而定)
# chown -R oracle:oinstall /opt/u01/oracle
修改文件访问权限
# chmod -R 777 /opt/u01/oracle
客户端安装
使用oracle用户
# vim /usr/share/gdm/defaults.conf 修改如下
E
文档评论(0)