1. VirtualBox Guest Addition 설치
실습을 위해 VirtualBox에서 구축된 환경에서는 편의를 위해 VBOXADDITIONS (이하 Guest Addition)를 설치해야 합니다.
사용자 이름에 "root"를 입력하고 "엔터"을 입력합니다.
암호에 root 사용자의 암호를 입력하고 "엔터"를 입력합니다.
호스트 머신의 VirtualBox 메뉴에서 '장치' > '게스트 확장 CD 이미지 삽입'을 클릭하여, Guest Addition CD를 mount 시켜줍니다.
Guest Addition 이미지를 mount하면 자동으로 폴더가 열립니다.
VBoxLinuxAdditions.run을 더블 클릭합니다.
실행 여부를 뭍는 창이 나오면 <터미널에서 실행>을 클릭합니다.
자동으로 설치가 진행되며, 설치가 완료되면 자동으로 터미널 창이 닫힙니다.
2. 설치 내역 확인
cat /etc/oracle-release cat /etc/redhat-release lsb_release -id uname -r
[root@oel5 ~]# cat /etc/oracle-release Oracle Linux Server release 5.11 [root@oel5 ~]# cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.11 (Tikanga) [root@oel5 ~]# lsb_release -id Distributor ID: EnterpriseEnterpriseServer Description: Enterprise Linux Enterprise Linux Server release 5.11 (Carthage) [root@oel5 ~]# uname -r 2.6.39-400.215.10.el5uek
설치된 리눅스의 버전 정보를 확인합니다.
설치된 버전에 따라 출력되는 메시지는 다를 수 있습니다.
root 유저로 수행
rpm -q binutils-2.* rpm -q compat-libstdc++-33-* rpm -q elfutils-libelf-0.* rpm -q elfutils-libelf-devel-* rpm -q gcc-4.* rpm -q gcc-c++-4.* rpm -q glibc-2.* rpm -q glibc-common-2.* rpm -q glibc-devel-2.* rpm -q glibc-headers-2.* rpm -q ksh-2* rpm -q libaio-0.* rpm -q libaio-devel-0.* rpm -q libgcc-4.* rpm -q libstdc++-4.* rpm -q libstdc++-devel-4.* rpm -q make-3.* rpm -q sysstat-7.* rpm -q unixODBC-2.* rpm -q unixODBC-devel-2.*
[root@oel5 ~]# rpm -q binutils-2.* binutils-2.17.50.0.6-26.el5 [root@oel5 ~]# rpm -q compat-libstdc++-33-* compat-libstdc++-33-3.2.3-61 [root@oel5 ~]# rpm -q elfutils-libelf-0.* elfutils-libelf-0.137-3.el5 [root@oel5 ~]# rpm -q elfutils-libelf-devel-* elfutils-libelf-devel-0.137-3.el5 [root@oel5 ~]# rpm -q gcc-4.* gcc-4.1.2-55.el5 [root@oel5 ~]# rpm -q gcc-c++-4.* gcc-c++-4.1.2-55.el5 [root@oel5 ~]# rpm -q glibc-2.* glibc-2.5-123.0.1 [root@oel5 ~]# rpm -q glibc-common-2.* glibc-common-2.5-123.0.1 [root@oel5 ~]# rpm -q glibc-devel-2.* glibc-devel-2.5-123.0.1 [root@oel5 ~]# rpm -q glibc-headers-2.* glibc-headers-2.5-123.0.1 [root@oel5 ~]# rpm -q ksh-2* ksh-20100621-20.el5 [root@oel5 ~]# rpm -q libaio-0.* libaio-0.3.106-5 [root@oel5 ~]# rpm -q libaio-devel-0.* libaio-devel-0.3.106-5 [root@oel5 ~]# rpm -q libgcc-4.* libgcc-4.1.2-55.el5 [root@oel5 ~]# rpm -q libstdc++-4.* libstdc++-4.1.2-55.el5 [root@oel5 ~]# rpm -q libstdc++-devel-4.* libstdc++-devel-4.1.2-55.el5 [root@oel5 ~]# rpm -q make-3.* make-3.81-3.el5 [root@oel5 ~]# rpm -q sysstat-7.* sysstat-7.0.2-13.0.1.el5 [root@oel5 ~]# rpm -q unixODBC-2.* unixODBC-2.2.11-10.el5 [root@oel5 ~]# rpm -q unixODBC-devel-2.* unixODBC-devel-2.2.11-10.el5
오라클 소프트웨어 설치를 위해 필요한 OS 패키지가 모두 설치되었는지 확인합니다.
3. 리눅스 설정 변경
vi /etc/hosts
<IP> <호스트명>
10.0.1.112 oel5
/etc/hosts 파일에 서버 정보를 추가합니다.
오라클 소프트웨어 설치를 정상적으로 진행하기 위해 정확한 정보를 입력해야 합니다.
vi /etc/fstab
tmpfs /dev/shm tmpfs size=1500m 0 0
root 유저로 수행
mount -o remount /dev/shm
기존 값을 #로 주석 처리
#tmpfs /dev/shm tmpfs defaults 0 0 tmpfs /dev/shm tmpfs size=1500m 0 0
[root@oel5 ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 46G 2.8G 41G 7% / tmpfs 1011M 0 1011M 0% /dev/shm oracle 233G 84G 150G 36% /media/sf_oracle [root@oel5 ~]# mount -o remount /dev/shm [root@oel5 ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 46G 2.8G 41G 7% / tmpfs 1.5G 0 1.5G 0% /dev/shm oracle 233G 84G 150G 36% /media/sf_oracle
오라클의 MEMORY_TARGET 파라미터를 사용하기 위해서 tmpfs를 변경해야 합니다.
기존에 설정된 tmpfs 값은 #로 주석 처리하거나 삭제합니다.
remount하여 바로 적용시킵니다.
vi /etc/sysctl.conf
fs.aio-max-nr = 1048576 fs.file-max = 6815744 kernel.shmmni = 4096 kernel.sem = 250 32000 100 128 net.ipv4.ip_local_port_range = 9000 65500 # 11g R2 기준 # net.ipv4.ip_local_port_range = 1024 65500 # 11g R1 기준 net.core.rmem_default = 262144 # 11g R2 기준 # net.core.rmem_default = 4194304 # 11g R1 기준 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 1048586
커널 변수를 추가하는 작업입니다.
오라클 소프트웨어를 설치하기 위해서 꼭 추가해줘야 합니다.
root 유저로 수행
chkconfig --level 123456 xinetd off chkconfig --level 123456 sendmail off chkconfig --level 123456 cups off chkconfig --level 123456 cups-config-daemon off chkconfig --level 123456 smartd off chkconfig --level 123456 iptables off chkconfig --level 123456 ip6tables off chkconfig --level 123456 bluetooth off chkconfig --level 123456 yum-updatesd off
[root@oel5 ~]# chkconfig --level 123456 xinetd off [root@oel5 ~]# chkconfig --level 123456 sendmail off [root@oel5 ~]# chkconfig --level 123456 cups off [root@oel5 ~]# chkconfig --level 123456 cups-config-daemon off [root@oel5 ~]# chkconfig --level 123456 smartd off [root@oel5 ~]# chkconfig --level 123456 iptables off [root@oel5 ~]# chkconfig --level 123456 ip6tables off [root@oel5 ~]# chkconfig --level 123456 bluetooth off [root@oel5 ~]# chkconfig --level 123456 yum-updatesd off
추가적인 리소스 확보를 위해 기본적으로 실행중인 불필요한 OS 프로그램을 off 시킵니다.