Home > Database > Mysql Tutorial > 中标Linux上成功安装Oracle 10G

中标Linux上成功安装Oracle 10G

WBOY
Release: 2016-06-07 16:55:07
Original
966 people have browsed it

昨天刚重装了系统,于是突发奇想 想装Oracle 看看能不能装上以前也在其他Linux上装过Oracle .一.安装系统时要把软件开发那一项给

昨天刚重装了系统,于是突发奇想 想装Oracle 看看能不能装上
以前也在其他Linux上装过Oracle .

一.安装系统时要把软件开发那一项给选择上,因为安装Oracle 时会需要gcc等工具。记住一定要选上哦

二 安装Oracle得前期准备
首先保证/tmp目录有大于400m得空间,内存最好大于2G(呵呵我得机器才1G,也能安装)。磁盘空间也要足够大哦 ,可以用命令查看 df -

1. 添加用户和组
groupadd oinstall
groupadd dba
useradd -g oinstall -G dba Oracle
passwd Oracle

2.创建安装目录
mkdir -p /u01/ppt/Oracle
chown -R Oracle.oinstall /u01

3.修改Oracle用户的.bash_profile
export PATH
unset USERNAME
export Oracle_BASE=/0u1/app/Oracle
export Oracle_HOME=$Oracle_BASE/product/10.2.0/db_1
export Oracle_SID=ora10g
export PATH=$PATH:$HOME/BIN:$Oracle_HOME/bin

4.调整内核参数 /etc/sysctl.conf
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
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 让参数生效

5. 编辑 /etc/security/limits.conf
Oracle soft nproc 65536
Oracle hard nproc 65536
Oracle soft nofile 65536
Oracle soft nofile 65536
nofile:操作系统用户可以同时打开的最大文件数
nproc:单个用户同时可以打开的进程数

6.编辑 /etc/pam.d/login
在最后一行添加:
session required pam_limits.so

7.如果/etc 下没有就创建RedHat-release (主要用于欺骗Oracle )
vim /etc/redhat-release
redhat-4
前期工作都准备好了,用Oracle 用户登录X 就可以安装了。
打开一个终端,cd 到Oracle 软件目录下 ./runInstaller 图形就会出来了。
其他的都是图形安装 很简单就不写了

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template