리눅스 상에서 오라클 설치
# centOS 설치
- centOS 설치시에 xwindow 설치
# 패키지 설치
# yum -y install binutils compat-db control-center gcc gcc-c++ \
glibc glibc-common gnome-libs libstdc++ libstdc++-devel make \
pdksh sysstat xscreensaver compat-libstdc++-33 libaio-devel \
unixODBC unixODBC-devel
# 오라클 계정 설정
# groupadd dba
# useradd -d /oracle -g dba oracle
# passwd oracle
# chmod 755 -R /oracle
# chown -R oracle.dba /oracle
# /etc/sysctl.conf 파일 수정 및 적용
# vi /etc/sysctl.conf
-> 아래 내용 추가
### oracle ###
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 = 4194304
net.core.wmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_max = 1048576
fs.aio-max-nr = 1048576
# /sbin/sysctl -p
-> 위 명령어로 /etc/sysctl.conf 파일에서 추가한 내용 적용
# /etc/security/limits.conf 파일에서 실행되는 프로세스 수 제한
# vi /etc/security/limits.conf
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
# /etc/pam.d/login 파일에 /lib/security/pam_limits.so 관련 내용 추가
# vi /etc/pam.d/login
-> 맨 아래 줄에 아래 내용 추가
session required /lib/security/pam_limits.so
# oracle 계정의 .bash_profile에서 환경 변수 수정
# vi /oracle/.bash_profile
export ORACLE_BASE=/oracle
export ORACLE_SID=ORCL
export ORACLE_HOME=$ORACLE_BASE/product
export PATH=$PATH:$ORACLE_HOME/bin
export DISPLAY=:0.
# 오라클 계정으로 su 후 파일 압축풀기
# su oracle
# unzip linux_11gR2_database_1of2.zip
# unzip linux_11gR2_database_2of2.zip
# chown -R oracle.dba database
# 압축을 풀면 database라는 디렉토리가 생성되고 runInstaller를 실행한다
- database 디렉토리는 ORACLE_HOME에 있어야 한다
# startx
- Xwindows로 부팅이 되면 터미널에서 runInstaller 파일을 실행
# ./runInstaller
# 오라클 자동 시작 설정
- /etc/oratab 파일에서 맨 아래 내용의 N을 Y로 변경
orcl:/oracle/11g:Y
# 리스너 파일 링크
# ln -s /oracle/product/bin/lsnrctl /usr/bin/lsnrctl
# 오라클 자동실행 스크립트
#!/bin/bash
ORA_HOME="/oracle/product"
ORA_OWNER="oracle"
if [ ! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME ]
then
echo "Oracle Startup: failed"
exit 1
fi
case "$1" in
start)
echo -n "Oracle Start: "
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start"
su - $ORA_OWNER -c $ORA_HOME/bin/dbstart
touch /var/lock/subsys/oracle
echo "OK"
;;
stop)
echo -n "ORACLE Shutdown: "
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
su - $ORA_OWNER -c $ORA_HOME/bin/dbshut
rm -f /var/lock/subsys/oracle
echo "OK"
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 start|stop|restart"
exit 1
esac
exit 0
posted by 김봉준<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]</div>
# centOS 설치
- centOS 설치시에 xwindow 설치
# 패키지 설치
# yum -y install binutils compat-db control-center gcc gcc-c++ \
glibc glibc-common gnome-libs libstdc++ libstdc++-devel make \
pdksh sysstat xscreensaver compat-libstdc++-33 libaio-devel \
unixODBC unixODBC-devel
# 오라클 계정 설정
# groupadd dba
# useradd -d /oracle -g dba oracle
# passwd oracle
# chmod 755 -R /oracle
# chown -R oracle.dba /oracle
# /etc/sysctl.conf 파일 수정 및 적용
# vi /etc/sysctl.conf
-> 아래 내용 추가
### oracle ###
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 = 4194304
net.core.wmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_max = 1048576
fs.aio-max-nr = 1048576
# /sbin/sysctl -p
-> 위 명령어로 /etc/sysctl.conf 파일에서 추가한 내용 적용
# /etc/security/limits.conf 파일에서 실행되는 프로세스 수 제한
# vi /etc/security/limits.conf
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
# /etc/pam.d/login 파일에 /lib/security/pam_limits.so 관련 내용 추가
# vi /etc/pam.d/login
-> 맨 아래 줄에 아래 내용 추가
session required /lib/security/pam_limits.so
# oracle 계정의 .bash_profile에서 환경 변수 수정
# vi /oracle/.bash_profile
export ORACLE_BASE=/oracle
export ORACLE_SID=ORCL
export ORACLE_HOME=$ORACLE_BASE/product
export PATH=$PATH:$ORACLE_HOME/bin
export DISPLAY=:0.
# 오라클 계정으로 su 후 파일 압축풀기
# su oracle
# unzip linux_11gR2_database_1of2.zip
# unzip linux_11gR2_database_2of2.zip
# chown -R oracle.dba database
# 압축을 풀면 database라는 디렉토리가 생성되고 runInstaller를 실행한다
- database 디렉토리는 ORACLE_HOME에 있어야 한다
# startx
- Xwindows로 부팅이 되면 터미널에서 runInstaller 파일을 실행
# ./runInstaller
# 오라클 자동 시작 설정
- /etc/oratab 파일에서 맨 아래 내용의 N을 Y로 변경
orcl:/oracle/11g:Y
# 리스너 파일 링크
# ln -s /oracle/product/bin/lsnrctl /usr/bin/lsnrctl
# 오라클 자동실행 스크립트
#!/bin/bash
ORA_HOME="/oracle/product"
ORA_OWNER="oracle"
if [ ! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME ]
then
echo "Oracle Startup: failed"
exit 1
fi
case "$1" in
start)
echo -n "Oracle Start: "
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start"
su - $ORA_OWNER -c $ORA_HOME/bin/dbstart
touch /var/lock/subsys/oracle
echo "OK"
;;
stop)
echo -n "ORACLE Shutdown: "
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
su - $ORA_OWNER -c $ORA_HOME/bin/dbshut
rm -f /var/lock/subsys/oracle
echo "OK"
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 start|stop|restart"
exit 1
esac
exit 0
posted by 김봉준<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]</div>
댓글 4개
mobiler
15년 전
참 간단해졌군여..
예전 2001년도에 레드햇 리눅스에서 오라클8 설치할때 참 고생많이 헀더랬는데..
커널 다운그래이드하고 설치하고.. 삽질하고..
리눅스만 100번은 깔았던거 같아요..
예전 2001년도에 레드햇 리눅스에서 오라클8 설치할때 참 고생많이 헀더랬는데..
커널 다운그래이드하고 설치하고.. 삽질하고..
리눅스만 100번은 깔았던거 같아요..
haejuksun
14년 전
저도 고생많이 했네요. ^^
13년 전
오..예전에 이걸로 밤새던 기억이 새록새록..감사합니다.
13년 전
ㄳㄳ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8130 | 9년 전 | 574 | ||
| 8129 |
|
9년 전 | 686 | |
| 8128 | 9년 전 | 543 | ||
| 8127 |
|
9년 전 | 591 | |
| 8126 | 9년 전 | 524 | ||
| 8125 | 9년 전 | 778 | ||
| 8124 |
|
9년 전 | 537 | |
| 8123 | 9년 전 | 522 | ||
| 8122 | 9년 전 | 453 | ||
| 8121 | 9년 전 | 561 | ||
| 8120 | 9년 전 | 482 | ||
| 8119 | 9년 전 | 570 | ||
| 8118 |
|
9년 전 | 646 | |
| 8117 |
|
9년 전 | 415 | |
| 8116 |
PASKRAN
|
9년 전 | 474 | |
| 8115 | 9년 전 | 469 | ||
| 8114 |
kiplayer
|
9년 전 | 607 | |
| 8113 | 9년 전 | 467 | ||
| 8112 |
|
9년 전 | 575 | |
| 8111 | 9년 전 | 414 | ||
| 8110 | 9년 전 | 456 | ||
| 8109 | 9년 전 | 387 | ||
| 8108 |
|
9년 전 | 564 | |
| 8107 |
|
9년 전 | 453 | |
| 8106 |
|
9년 전 | 455 | |
| 8105 | 9년 전 | 485 | ||
| 8104 |
|
9년 전 | 450 | |
| 8103 |
|
9년 전 | 450 | |
| 8102 |
|
9년 전 | 422 | |
| 8101 |
snshero
|
9년 전 | 807 | |
| 8100 | 9년 전 | 854 | ||
| 8099 | 9년 전 | 831 | ||
| 8098 | 9년 전 | 730 | ||
| 8097 | 9년 전 | 538 | ||
| 8096 | 9년 전 | 736 | ||
| 8095 | 9년 전 | 870 | ||
| 8094 | 9년 전 | 540 | ||
| 8093 | 9년 전 | 821 | ||
| 8092 | 9년 전 | 774 | ||
| 8091 | 9년 전 | 1158 | ||
| 8090 | 9년 전 | 784 | ||
| 8089 | 9년 전 | 997 | ||
| 8088 | 9년 전 | 660 | ||
| 8087 | 9년 전 | 787 | ||
| 8086 | 9년 전 | 535 | ||
| 8085 | 9년 전 | 501 | ||
| 8084 | 9년 전 | 618 | ||
| 8083 | 9년 전 | 591 | ||
| 8082 | 9년 전 | 780 | ||
| 8081 | 9년 전 | 489 | ||
| 8080 | 9년 전 | 586 | ||
| 8079 | 9년 전 | 545 | ||
| 8078 | 9년 전 | 465 | ||
| 8077 | 9년 전 | 554 | ||
| 8076 | 9년 전 | 424 | ||
| 8075 | 9년 전 | 457 | ||
| 8074 | 9년 전 | 419 | ||
| 8073 | 9년 전 | 475 | ||
| 8072 | 9년 전 | 468 | ||
| 8071 |
o1o111
|
9년 전 | 915 | |
| 8070 | 9년 전 | 425 | ||
| 8069 | 9년 전 | 362 | ||
| 8068 | 9년 전 | 615 | ||
| 8067 | 9년 전 | 414 | ||
| 8066 | 9년 전 | 441 | ||
| 8065 | 9년 전 | 400 | ||
| 8064 | 9년 전 | 394 | ||
| 8063 | 9년 전 | 361 | ||
| 8062 | 9년 전 | 331 | ||
| 8061 | 9년 전 | 368 | ||
| 8060 | 9년 전 | 406 | ||
| 8059 | 9년 전 | 341 | ||
| 8058 | 9년 전 | 280 | ||
| 8057 | 9년 전 | 410 | ||
| 8056 | 9년 전 | 326 | ||
| 8055 | 9년 전 | 373 | ||
| 8054 | 9년 전 | 383 | ||
| 8053 | 9년 전 | 434 | ||
| 8052 | 9년 전 | 306 | ||
| 8051 | 9년 전 | 356 | ||
| 8050 | 9년 전 | 413 | ||
| 8049 | 9년 전 | 345 | ||
| 8048 | 9년 전 | 449 | ||
| 8047 | 9년 전 | 388 | ||
| 8046 | 9년 전 | 330 | ||
| 8045 | 9년 전 | 277 | ||
| 8044 | 9년 전 | 364 | ||
| 8043 | 9년 전 | 321 | ||
| 8042 | 9년 전 | 309 | ||
| 8041 | 9년 전 | 372 | ||
| 8040 | 9년 전 | 296 | ||
| 8039 | 9년 전 | 338 | ||
| 8038 | 9년 전 | 281 | ||
| 8037 | 9년 전 | 427 | ||
| 8036 | 9년 전 | 515 | ||
| 8035 | 9년 전 | 446 | ||
| 8034 | 9년 전 | 407 | ||
| 8033 | 9년 전 | 367 | ||
| 8032 | 9년 전 | 471 | ||
| 8031 | 9년 전 | 364 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기