리눅스 상에서 오라클 설치
# 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년 전
ㄳㄳ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 3030 | 14년 전 | 1170 | ||
| 3029 |
|
14년 전 | 1293 | |
| 3028 | 14년 전 | 1041 | ||
| 3027 | 14년 전 | 848 | ||
| 3026 | 14년 전 | 1031 | ||
| 3025 |
마케팅메지션
|
14년 전 | 1152 | |
| 3024 | 14년 전 | 862 | ||
| 3023 | 14년 전 | 847 | ||
| 3022 |
|
14년 전 | 1221 | |
| 3021 | 14년 전 | 1016 | ||
| 3020 | 14년 전 | 906 | ||
| 3019 | 14년 전 | 1060 | ||
| 3018 | 14년 전 | 1228 | ||
| 3017 |
마케팅메지션
|
14년 전 | 933 | |
| 3016 |
|
14년 전 | 970 | |
| 3015 | 14년 전 | 665 | ||
| 3014 | 14년 전 | 882 | ||
| 3013 | 14년 전 | 1092 | ||
| 3012 | 14년 전 | 923 | ||
| 3011 | 14년 전 | 924 | ||
| 3010 | 14년 전 | 1146 | ||
| 3009 |
마케팅메지션
|
14년 전 | 1658 | |
| 3008 | 14년 전 | 580 | ||
| 3007 | 14년 전 | 1017 | ||
| 3006 |
마케팅메지션
|
14년 전 | 1000 | |
| 3005 |
마케팅메지션
|
14년 전 | 893 | |
| 3004 | 14년 전 | 873 | ||
| 3003 |
마케팅메지션
|
14년 전 | 989 | |
| 3002 | 14년 전 | 776 | ||
| 3001 | 14년 전 | 2006 | ||
| 3000 | 14년 전 | 771 | ||
| 2999 | 14년 전 | 1667 | ||
| 2998 | 14년 전 | 758 | ||
| 2997 |
|
14년 전 | 847 | |
| 2996 | 14년 전 | 933 | ||
| 2995 | 14년 전 | 890 | ||
| 2994 | 14년 전 | 1597 | ||
| 2993 |
마케팅메지션
|
14년 전 | 1002 | |
| 2992 |
마케팅메지션
|
14년 전 | 961 | |
| 2991 |
마케팅메지션
|
14년 전 | 1130 | |
| 2990 | 14년 전 | 972 | ||
| 2989 | 14년 전 | 791 | ||
| 2988 |
|
14년 전 | 935 | |
| 2987 | 14년 전 | 816 | ||
| 2986 | 14년 전 | 1033 | ||
| 2985 | 14년 전 | 576 | ||
| 2984 | 14년 전 | 955 | ||
| 2983 | 14년 전 | 964 | ||
| 2982 | 14년 전 | 910 | ||
| 2981 | 14년 전 | 834 | ||
| 2980 |
마케팅메지션
|
14년 전 | 1169 | |
| 2979 |
마케팅메지션
|
14년 전 | 901 | |
| 2978 |
|
14년 전 | 844 | |
| 2977 |
|
14년 전 | 875 | |
| 2976 | 14년 전 | 818 | ||
| 2975 | 14년 전 | 815 | ||
| 2974 | 14년 전 | 895 | ||
| 2973 | 14년 전 | 1286 | ||
| 2972 | 14년 전 | 667 | ||
| 2971 | 14년 전 | 731 | ||
| 2970 | 14년 전 | 896 | ||
| 2969 | 14년 전 | 911 | ||
| 2968 | 14년 전 | 771 | ||
| 2967 | 14년 전 | 1354 | ||
| 2966 | 14년 전 | 853 | ||
| 2965 |
|
14년 전 | 1083 | |
| 2964 | 14년 전 | 1472 | ||
| 2963 | 14년 전 | 957 | ||
| 2962 |
|
14년 전 | 977 | |
| 2961 |
|
14년 전 | 886 | |
| 2960 | 14년 전 | 837 | ||
| 2959 | 14년 전 | 1180 | ||
| 2958 | 14년 전 | 929 | ||
| 2957 |
|
14년 전 | 810 | |
| 2956 |
|
14년 전 | 1187 | |
| 2955 |
|
14년 전 | 2341 | |
| 2954 | 14년 전 | 931 | ||
| 2953 | 14년 전 | 1051 | ||
| 2952 |
senseme
|
14년 전 | 1184 | |
| 2951 |
뱌미3059
|
14년 전 | 903 | |
| 2950 |
|
14년 전 | 950 | |
| 2949 | 14년 전 | 997 | ||
| 2948 | 14년 전 | 869 | ||
| 2947 |
|
14년 전 | 958 | |
| 2946 |
개발조각사
|
14년 전 | 2448 | |
| 2945 |
개발조각사
|
14년 전 | 1758 | |
| 2944 |
개발조각사
|
14년 전 | 6044 | |
| 2943 |
개발조각사
|
14년 전 | 1293 | |
| 2942 |
개발조각사
|
14년 전 | 1568 | |
| 2941 |
개발조각사
|
14년 전 | 1929 | |
| 2940 |
개발조각사
|
14년 전 | 3656 | |
| 2939 |
개발조각사
|
14년 전 | 2988 | |
| 2938 |
개발조각사
|
14년 전 | 2063 | |
| 2937 |
개발조각사
|
14년 전 | 1570 | |
| 2936 |
개발조각사
|
14년 전 | 4015 | |
| 2935 | 14년 전 | 1096 | ||
| 2934 | 14년 전 | 876 | ||
| 2933 | 14년 전 | 1051 | ||
| 2932 | 14년 전 | 980 | ||
| 2931 | 14년 전 | 977 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기