ORACLE在linux下的安裝步驟

shilei1發表於2012-07-25

1.      由於是在linux下首先我們需要配置yum倉庫:

vim  /etc/yum.repos.d/server.repo

[base]

baseurl=file:///mnt/cdrom/Server  //軟體倉庫的路徑,一定要真實,要絕對

enabled=1                         //啟用倉庫

        gpgcheck=0                        //數字簽名

2.      掛載光碟

如圖確認載入光碟

mkdir /mnt/cdrom

mount /dev/cdrom /mnt/cdrom

3.      更新yum倉庫

yum repolist

yum install samba

yum install openssh*

service sshd start

chkconfig sshd on   設定開機啟動

4.      配置IP system-config-network

      service network restart

5.      透過samba進行檔案的複製

前面已經安裝sambavim /etc/samba/smb.conf

/security找到將圖中的user改成share;同一頁面拉到最下面鍵入:

software

path = /software

public = yes

writable = yes儲存

mkdir /software

這裡samba的共享許可權和系統的許可權衝突,系統許可權高於samba共享許可權

chmod 777 /software/ 修改系統對於software的讀寫許可權;

service smb start

chkconfig smb on

ps -axu | grep smb

netstat –ntlup

6.      關閉linux防火牆

如果沒有iptables命令可以透過yum安裝,然後

iptables –F

service iptables save

7.      Linux下設定selinux:命令下

vim /etc/selinux/config

修改selinux = disable

鍵入setenforce 0 (避免重啟)

最後主機執行IP地址即可訪問software共享檔案,然後將資料庫的壓縮檔案複製進去(其實我們可以另外一種簡單的方法;進行拖拽式的複製)

8.      我們將複製進去的壓縮檔案進行unzip解壓

這裡可以看到我們已經解壓出來了

9.      修改HOST檔案:vi /etc/hosts

               192.168.0.3liunx網路卡的IP  ocp

  修改核心引數:

在“/etc/sysctl.conf”中新增以下內容

#256M=268435456

#512M=536870912

#1G=1073741824

#2G=2147483648

kernel.shmmax = 536870912

kernel.shmall = 2097152

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”,使新的核心引數立即生效

10.   限制ORACLE開啟的檔案數量和程式

   在“/etc/security/limits.conf”中新增以下內容

oracle soft nproc 2047

oracle hard nproc 16384

oracle soft nofile 1024

oracle hard nofile 65536

11.    在“/etc/pam.d/login”檔案中新增以下內容:

session    required     pam_limits.so

12.  配置oracle需要安裝的軟體包

13.     新增用於安裝和管理的組和使用者

groupadd oinstall

groupadd dba

 

useradd -g oinstall -G dba oracle

passwd oracle

14建立Oracle安裝目錄,並設定許可權

       mkdir -p /u01/app/oracle/product/10.2.0/db_1

       chown -R oracle:oinstall /u01/app/oracle

       chmod -R 755 /u01/app/oracle

15配置ORACLE使用者引數

       先切換到ORACLE使用者下,鍵入vim .bash_profile

export PATH

export ORACLE_BASE=/u01/app/oracle

export ORACLE_HOME=$ORACLE_BASE/produce/10.2.0/db_1

export SQLPATH=/home/oracle/labs

export PATH=$ORACLE_HOME/bin:$PATH

export ORACLE_SID=orcl

~                      

執行source .bash_profile啟動使用者配置

16. 修改作業系統版本,欺騙到4

   vi /etc/redhat-release   5.5改成4就可以

17. ROOT身份開啟X視窗

   xhost +

以上17步是安裝ORACLE前的環境的配置過程。

轉載justcry2009

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/196700/viewspace-736565/,如需轉載,請註明出處,否則將追究法律責任。

相關文章