RHEL 7.2 Oacle 설치

9259 단어 Linux
Linux 서버 에 Oracle 설치
서버 시스템: Red Hat Enterprise Linux 7.2
노트북 으로 원 격 으로 설치 되 어 있 기 때문에 노트북 에 SSH 클 라 이언 트 (예 를 들 어 SecureCRT) 와 터미널 시 뮬 레이 터 (예 를 들 어 Xmanager) 를 먼저 설치 해 야 합 니 다.
본 블 로 그 는 설치 절차 와 설정, 구체 적 으로 설 치 된 그래 픽 인터페이스 과정 과 설치 과정 에서 발생 할 수 있 는 문제 만 쓰 고 블 로 그 를 따로 쓸 것 입 니 다.
1. 방화벽 닫 기
[root@ocp ~]# systemctl disable firewalld   //     ,      

또한 명령: systemctl status firewalld / 방화벽 상태 보기
systemctl stop firewalld / / 방화벽 을 닫 고 재 부팅 후 효력 을 잃 습 니 다.
systemctl enable firewalld / 방화벽 열기
2. SELinux 닫 기
[root@ocp ~]# getenforce     //  selinux   
[root@ocp ~]# vi /etc/sysconfig/selinux      //  selinux    

파일 에 SELINUX = enforcing 을 SELINUX = disabled 로 변경 합 니 다.
3. 서버 재 부팅
[root@ocp ~]# shutdown  -r now 

혹은 \ # reboot 로
4. 설치 환경 설정
a. 설정 / etc / host 파일
[root@ocp ~]# vi /etc/hosts    //          

파일 에 추가: 192.168.10.10 ocp. oracle. com ocp (ip 주 소 는 실제 상황 에 따라 쓰기)
b. 사용자 그룹 만 들 기
[root@ocp ~]# /usr/sbin/groupadd -g 501 oinstall
[root@ocp ~]# /usr/sbin/groupadd -g 502 dba

c. 사용자 생 성
[root@ocp ~]# /usr/sbin/useradd -u 502 -g oinstall -G dba oracle

d. Oacle 사용자 비밀번호 설정
[root@ocp ~]# passwd oracle

e. 커 널 매개 변수 설정
[root@ocp ~]# vi /etc/sysctl.conf

파일 에 추가:
kernel.shmall = 2097152 kernel.shmmax = 4294967295 kernel.shmmni = 4096 kernel.sem = 250 32000 100 128 fs.file-max = 6815744 net.ipv4.ip_local_port_range = 9000 65500 net.core.rmem_default = 262144 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 1048576
커 널 매개 변수 불 러 오기
[root@ocp ~]# /sbin/sysctl -p

f. / etc / security / limits. conf 설정
[root@ocp ~]# vi /etc/security/limits.conf

추가:
oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536
g. pam 설정
[root@ocp ~]# vi /etc/pam.d/login

추가: session required pamlimits.so
5. 디 렉 터 리 만 들 기
[root@ocp ~]# mkdir -p /u01/app/oraInventory
[root@ocp ~]# chown -R oracle:oinstall /u01/
[root@ocp ~]# chmod -R 775 /u01/

6. Oacle 소프트웨어 업로드
Oacle. zip 소프트웨어 를 / u01 / media 디 렉 터 리 에 놓 고 압축 해제 패키지 \ # unzip xxx. zip
[root@ocp ~]# cd /u01/media       //  media  
[root@ocp media]# ls              //          
database  p10404530_112030_Linux-x86-64_1of7.zip  p10404530_112030_Linux-x86-64_3of7.zip
grid      p10404530_112030_Linux-x86-64_2of7.zip  p12834027_112030_Linux-x86-64.zip
[root@ocp media]# unzip p10404530_112030_Linux-x86-64_1of7.zip    //    
[root@ocp media]# unzip p10404530_112030_Linux-x86-64_2of7.zip
[root@ocp media]# unzip p10404530_112030_Linux-x86-64_3of7.zip
[root@ocp media]# unzip p12834027_112030_Linux-x86-64.zip

7. Oacle 소프트웨어 설치
[root@ocp media]# su - oracle    //  oracle  
[oracle@ocp ~]$# export DISPLAY=192.168.10.11:0.0        //            ,IP      IP
[oracle@ocp ~]$ cd /u01/media/database
[oracle@localhost database]$ export LANG=zh_cn.utf-8    //    ,          
[oracle@ocp database]$ ./runInstaller  //    

다음 정보 가 나타 나 면 설치 인터페이스 에 들 어가 서 설치 합 니 다.
Starting Oracle Universal Installer…
Checking Temp space: must be greater than 120 MB. Actual 36234 MB Passed Checking swap space: must be greater than 150 MB. Actual 16063 MB Passed Checking monitor: must be configured to display at least 256 colors. Actual 16777216 Passed Preparing to launch Oracle Universal Installer from /tmp/OraInstall2017-04-09_10-21-07PM. Please wait …[oracle@ocp database]$ You can find the log of this install session at: /u01/app/oraInventory/logs/installActions2017-04-09_10-21-07PM.log
8. Oacle 데이터베이스 설치
a. netca 로 Listener 만 들 기
[root@ocp bin]# su - oracle
[oracle@ocp ~]$ cd /u01/media/database
[oracle@ocp database]$ cd /u01/app/oracle/product/11.2.0/dbhome_1/bin/
[oracle@ocp bin]$ export DISPLAY=192.168.10.11:0.0
[oracle@ocp bin]$ export LANG=zh_cn.utf-8
[oracle@ocp bin]$ ./netca

b. dbca 로 데이터베이스 만 들 기
[root@ocp ~]# su - oracle
[oracle@ocp ~]$ cd /u01/media/database
[oracle@ocp database]$ cd /u01/app/oracle/product/11.2.0/dbhome_1/bin/
[oracle@ocp bin]$ export DISPLAY=192.168.10.11:0.0
[oracle@ocp bin]$ export LANG=zh_cn.utf-8 
[oracle@ocp bin]$ ./dbca

이상 설치 가 완료 되면 데이터베이스 에 연결 할 수 없습니다. 이 때 Oacle 환경 변 수 를 설정 해 야 합 니 다.
9. oracle 환경 변수 설정
[root@ocp ~]#  su - oracle          //  oracle  
[oracle@ocp ~]$ cd /home/oracle     //  oracle  
[oracle@ocp ~]$ vi .bash_profile    //  .bash_profile

파일 마지막 에 추가:
export ORACLE_SID=oracle     
export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
export PATH=$ORACLE_HOME/bin:$PATH

10. Net Configuration Assistant 설정
다음은 Net Configuration Assistant 를 설정 하고 로 컬 Oracle 클 라 이언 트 를 열 면 로그 인하 면 서버 의 데이터 베 이 스 를 연결 할 수 있 습 니 다.

좋은 웹페이지 즐겨찾기