一、平台环境及软件
ubuntu 8.04 sever
jdk6.0
oracle10g (10201_database_linux32.rar,下载http://ubuntu.cn99.com)
Xmanager 3
二、安装相关前期软件
1、用apt-get install 命令下载安装以下程序包
build-essential libaio1 gawk ksh libmotif3 alien libtool lsb-rpm gcc make binutils lesstif2 libc6 libc6-dev rpm libmotif3 libaio libstdc++5 xorg
安装完以后,需要做的就是修改一些Ubuntu的/bin/sh的默认连接,千万不要略过这一步,否则安装的时候会出现很多错误。
root@hardy:~# cd /bin
root@hardy:/bin# ls -l /bin/sh
lrwxrwxrwx 1 root root 4 2008-04-28 19:59 /bin/sh -> dash
root@hardy:/bin# ln -sf bash /bin/sh
root@hardy:/bin# ls -l /bin/sh
lrwxrwxrwx 1 root root 4 2008-05-01 22:51 /bin/sh -> bash
2、安装jdk6后,在/etc/environment设置JAVA_HOME、PATH、CLASSPATH等环境变量
3、在与linux服务器同一网段上的计算机(装win操作系统)上安装Xmanager3软件,由于Ubuntu Server没有图形界面,而且oracle10g是以图形界面方式安装的,在安装过程中需要用户在图形界面中输入参数,因此需要配置外部XWindows,方便接收安装过程中从linux上输出的图形对话框。
三、Linux参数设置
1、创建用户并设置权限,安装Oracle需要新建一个系统用户和三个组增加用户和组,并修改一些配置。这一步很重要!如果不是很有把握,不要随便改。(为了便于解释,增加了行号,红色字体的内容是安装过程中须要注意的地方):
<1> root@hardy:/bin# cd
<2> root@hardy:~# pwd
/root
<3> root@hardy:~# addgroup oinstall
Adding group `oinstall' (GID 1001) ...
Done.
<4> root@hardy:~# addgroup dba
Adding group `dba' (GID 1002) ...
Done.
<6> root@hardy:~# addgroup nobody
Adding group `nobody' (GID 1003) ...
Done.
<7> root@hardy:~# usermod -g nobody nobody
<8> root@hardy:~# useradd -g oinstall -G dba -p password -d /home/oracledba - s /bin/bash oracledba
<9> root@hardy:~# passwd -l oracle
Password changed.
<10> root@hardy:~# mkdir /home/oracledba
<11> root@hardy:~# chown -R oracle:dba /home/oracledba (oracle10g用户主目录)
<12> root@hardy:~# ln -s /usr/bin/awk /bin/awk
<13> root@hardy:~# ln -s /usr/bin/rpm /bin/rpm
<14> root@hardy:~# ln -s /usr/bin/basename /bin/basename
<15> root@hardy:~# mkdir /etc/rc.d
<16> root@hardy:~# for i in 0 1 2 3 4 5 6 S ; do ln -s /etc/rc$i.d /etc/rc.d/rc$i.d ; done
<17> root@hardy:ln -s /etc/init.d /etc/rc.d/init.d
<18> root@hardy:~# chown -R oracle:dba /u01 (oracle10g安装路径、可按实际情况自行修改)
<19> root@hardy:~# mkdir -p /u01/app/oracle
2、在/etc/redhat-release中添加以下语句,以使安装程序认为我们正在一个RedHat的系统上安装:
Red Hat Linux release 4.1
3、修改一些系统默认值。这些修改将会增加系统文件描述符的数量、增加共享内存大小和修改一些网络子系统参数。
将下面这些增加到/etc/sysctl.conf 文件的末尾:
fs.file-max = 65535
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 1024 65535
net.core.rmem_default = 1048576
net.core.rmem_max = 1048576
net.core.wmem_default = 262144
net.core.wmem_max = 262144
在/etc/security/limits.conf中添加下面几行:
* soft nproc 2407
* hard nproc 16384
* soft nofile 1024
* hard nofile 65536
为了强制使用刚才增加的东西,再增加下面这些到/etc/pam.d/login
文件末尾:
session required /lib/security/pam_limits.so
session required pam_limits.so
然后通过命令:sysctl -p 让刚才
增加的东西生效
三、安装oracle10g
1、运行XmanageBroadcast,会在弹出一个屏幕,屏幕上暂时没有任何东西出现。
2、在linux server上,以oracledba用户运行以下命令:
oracledba@hardy:~$ export DISPLAY=192.168.1.111:0.0(运行Xmanage的计算机IP地址)
oracledba@hardy:~$ export LANG=C
oracledba@hardy:~$ 进入oracle10g安装包,找到runInstaller
oracledba@hardy:~$ ./runInstaller -ignoreSysPrereqs
3、linux server 运行runInstaller过程中,回到192.168.1.111计算机上,观察刚才弹出的屏幕上,是否有oracle10g安装图形界面出现,如果以述所有配置都正确的话,都会出现oracle10g安装图形界面。(请看附件)
4、接下来就可以按oracle10g安装图形界面提示安装数据库了。
到了这一步不要点“OK”,需要做下面操作:
另起一个终端,用sudo su - 转为超级用户
oracledba@hardy:~# /u01/app/oracle/oraInventory/orainstRoot.sh
oracledba@hardy:~# /u01/app/oracle/product/10.2.0/db_1/root.sh
然后回到图形屏幕点"OK"
5、回到linux server 执行以下操作,检查安装是否成功
oracledba@hardy:~$ export ORACLE_SID=heron(heron 是你安装数据库所输入的)
oracledba@hardy:~$ sqlplus '/as sysdba'
SQL*Plus: Release 11.1.0.6.0 - Production on Mon May 5 02:39:27 2008
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL>
如果你看到了上面的结果,证明你的oracle安装成功了。
6、在/etc/profile文件中加入下面几句:
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
export PATH=$PATH:/u01/app/oracle/product/10.2.0/db_1/bin
7、 可惜这里没有贴图功能,无法将我安装过程中的截图贴出来,不过附件有两张截图,如果有不明白可以直接联系我。