리눅스 상에서 오라클 설치
# 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
14년 전
참 간단해졌군여..
예전 2001년도에 레드햇 리눅스에서 오라클8 설치할때 참 고생많이 헀더랬는데..
커널 다운그래이드하고 설치하고.. 삽질하고..
리눅스만 100번은 깔았던거 같아요..
예전 2001년도에 레드햇 리눅스에서 오라클8 설치할때 참 고생많이 헀더랬는데..
커널 다운그래이드하고 설치하고.. 삽질하고..
리눅스만 100번은 깔았던거 같아요..
haejuksun
14년 전
저도 고생많이 했네요. ^^
13년 전
오..예전에 이걸로 밤새던 기억이 새록새록..감사합니다.
13년 전
ㄳㄳ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7030 | 11년 전 | 1403 | ||
| 7029 |
|
11년 전 | 3240 | |
| 7028 |
|
11년 전 | 1135 | |
| 7027 | 11년 전 | 1002 | ||
| 7026 | 11년 전 | 2081 | ||
| 7025 |
어려워요잉
|
11년 전 | 2736 | |
| 7024 | 11년 전 | 2102 | ||
| 7023 | 11년 전 | 3131 | ||
| 7022 |
Shhhh
|
11년 전 | 1525 | |
| 7021 |
|
11년 전 | 3269 | |
| 7020 | 11년 전 | 785 | ||
| 7019 |
막돼먹은영애
|
11년 전 | 1081 | |
| 7018 | 11년 전 | 1953 | ||
| 7017 | 11년 전 | 2311 | ||
| 7016 | 11년 전 | 1020 | ||
| 7015 | 11년 전 | 2825 | ||
| 7014 | 11년 전 | 3028 | ||
| 7013 | 11년 전 | 1518 | ||
| 7012 |
|
11년 전 | 2192 | |
| 7011 | 11년 전 | 1049 | ||
| 7010 | 11년 전 | 1402 | ||
| 7009 |
|
11년 전 | 1071 | |
| 7008 | 11년 전 | 2262 | ||
| 7007 | 11년 전 | 2180 | ||
| 7006 |
|
11년 전 | 1166 | |
| 7005 | 11년 전 | 5305 | ||
| 7004 | 11년 전 | 2353 | ||
| 7003 | 11년 전 | 3063 | ||
| 7002 | 11년 전 | 1913 | ||
| 7001 | 11년 전 | 949 | ||
| 7000 | 11년 전 | 2033 | ||
| 6999 |
|
11년 전 | 2157 | |
| 6998 | 11년 전 | 1876 | ||
| 6997 |
네이비칼라
|
11년 전 | 1489 | |
| 6996 | 11년 전 | 951 | ||
| 6995 |
|
11년 전 | 1848 | |
| 6994 | 11년 전 | 2573 | ||
| 6993 |
kimsdesign
|
11년 전 | 1296 | |
| 6992 |
|
11년 전 | 2773 | |
| 6991 | 11년 전 | 1717 | ||
| 6990 | 11년 전 | 4470 | ||
| 6989 | 11년 전 | 1848 | ||
| 6988 |
네이비컬러
|
11년 전 | 2505 | |
| 6987 | 11년 전 | 3720 | ||
| 6986 |
잘살아보자
|
11년 전 | 1591 | |
| 6985 |
잘살아보자
|
11년 전 | 2466 | |
| 6984 | 11년 전 | 817 | ||
| 6983 |
천재조상훈
|
11년 전 | 1849 | |
| 6982 |
천재조상훈
|
11년 전 | 4481 | |
| 6981 |
천재조상훈
|
11년 전 | 1608 | |
| 6980 |
|
11년 전 | 1864 | |
| 6979 |
|
11년 전 | 744 | |
| 6978 |
잘살아보자
|
11년 전 | 1137 | |
| 6977 |
잘살아보자
|
11년 전 | 1465 | |
| 6976 |
잘살아보자
|
11년 전 | 1569 | |
| 6975 |
천재조상훈
|
11년 전 | 1475 | |
| 6974 |
잘살아보자
|
11년 전 | 2230 | |
| 6973 |
잘살아보자
|
11년 전 | 1153 | |
| 6972 |
잘살아보자
|
11년 전 | 3067 | |
| 6971 |
잘살아보자
|
11년 전 | 3273 | |
| 6970 |
잘살아보자
|
11년 전 | 1836 | |
| 6969 |
잘살아보자
|
11년 전 | 4757 | |
| 6968 | 11년 전 | 9891 | ||
| 6967 |
|
11년 전 | 2627 | |
| 6966 |
|
11년 전 | 1110 | |
| 6965 | 11년 전 | 3255 | ||
| 6964 | 11년 전 | 2577 | ||
| 6963 | 11년 전 | 2100 | ||
| 6962 |
star3840
|
11년 전 | 1014 | |
| 6961 | 11년 전 | 4240 | ||
| 6960 |
|
11년 전 | 709 | |
| 6959 | 11년 전 | 1233 | ||
| 6958 |
|
11년 전 | 1665 | |
| 6957 | 11년 전 | 1888 | ||
| 6956 |
잘살아보자
|
11년 전 | 1849 | |
| 6955 | 11년 전 | 4623 | ||
| 6954 | 11년 전 | 1625 | ||
| 6953 |
잘살아보자
|
11년 전 | 858 | |
| 6952 |
잘살아보자
|
11년 전 | 2039 | |
| 6951 | 11년 전 | 1605 | ||
| 6950 | 11년 전 | 2607 | ||
| 6949 |
잘살아보자
|
11년 전 | 882 | |
| 6948 | 11년 전 | 1552 | ||
| 6947 | 11년 전 | 1464 | ||
| 6946 | 11년 전 | 1601 | ||
| 6945 | 11년 전 | 1227 | ||
| 6944 | 11년 전 | 1184 | ||
| 6943 | 11년 전 | 1229 | ||
| 6942 | 11년 전 | 1568 | ||
| 6941 | 11년 전 | 1654 | ||
| 6940 | 11년 전 | 1750 | ||
| 6939 | 11년 전 | 1661 | ||
| 6938 | 11년 전 | 1938 | ||
| 6937 | 11년 전 | 1148 | ||
| 6936 | 11년 전 | 1345 | ||
| 6935 | 11년 전 | 1296 | ||
| 6934 | 11년 전 | 1464 | ||
| 6933 | 11년 전 | 1972 | ||
| 6932 | 11년 전 | 1529 | ||
| 6931 | 11년 전 | 1534 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기