리눅스 상에서 오라클 설치
# 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년 전
ㄳㄳ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 2730 | 15년 전 | 641 | ||
| 2729 | 15년 전 | 1391 | ||
| 2728 |
|
15년 전 | 925 | |
| 2727 |
용다섯마리
|
15년 전 | 677 | |
| 2726 |
니콜크더만
|
15년 전 | 756 | |
| 2725 |
Insungbyun
|
15년 전 | 827 | |
| 2724 | 15년 전 | 1223 | ||
| 2723 | 15년 전 | 720 | ||
| 2722 | 15년 전 | 729 | ||
| 2721 | 15년 전 | 942 | ||
| 2720 | 15년 전 | 678 | ||
| 2719 |
|
15년 전 | 1418 | |
| 2718 | 15년 전 | 1047 | ||
| 2717 |
디이자이너
|
15년 전 | 2865 | |
| 2716 |
|
15년 전 | 1358 | |
| 2715 | 15년 전 | 641 | ||
| 2714 |
고추장불고기
|
15년 전 | 615 | |
| 2713 | 15년 전 | 767 | ||
| 2712 | 15년 전 | 1257 | ||
| 2711 | 15년 전 | 1187 | ||
| 2710 | 15년 전 | 665 | ||
| 2709 | 15년 전 | 788 | ||
| 2708 |
TWM소프트
|
15년 전 | 976 | |
| 2707 |
|
15년 전 | 1212 | |
| 2706 |
|
15년 전 | 1014 | |
| 2705 | 15년 전 | 993 | ||
| 2704 | 15년 전 | 1187 | ||
| 2703 |
|
15년 전 | 662 | |
| 2702 |
|
15년 전 | 644 | |
| 2701 | 15년 전 | 1053 | ||
| 2700 | 15년 전 | 640 | ||
| 2699 | 15년 전 | 1741 | ||
| 2698 | 15년 전 | 2236 | ||
| 2697 |
|
15년 전 | 809 | |
| 2696 | 15년 전 | 814 | ||
| 2695 | 15년 전 | 1472 | ||
| 2694 |
|
15년 전 | 873 | |
| 2693 | 15년 전 | 970 | ||
| 2692 | 15년 전 | 1379 | ||
| 2691 |
Homepix
|
15년 전 | 1533 | |
| 2690 | 15년 전 | 1643 | ||
| 2689 | 15년 전 | 1081 | ||
| 2688 |
sooram
|
15년 전 | 1756 | |
| 2687 |
terrorboys
|
15년 전 | 1558 | |
| 2686 |
진정한승리
|
15년 전 | 797 | |
| 2685 |
|
15년 전 | 1767 | |
| 2684 |
진정한승리
|
15년 전 | 917 | |
| 2683 |
dannykim
|
15년 전 | 773 | |
| 2682 | 15년 전 | 817 | ||
| 2681 | 15년 전 | 771 | ||
| 2680 | 15년 전 | 943 | ||
| 2679 | 15년 전 | 953 | ||
| 2678 | 15년 전 | 1171 | ||
| 2677 |
|
15년 전 | 3184 | |
| 2676 | 15년 전 | 1754 | ||
| 2675 | 15년 전 | 889 | ||
| 2674 | 15년 전 | 1580 | ||
| 2673 | 15년 전 | 758 | ||
| 2672 | 15년 전 | 893 | ||
| 2671 |
다케미카코
|
15년 전 | 1857 | |
| 2670 | 15년 전 | 1810 | ||
| 2669 | 15년 전 | 850 | ||
| 2668 |
terrorboys
|
15년 전 | 1112 | |
| 2667 | 15년 전 | 1069 | ||
| 2666 | 15년 전 | 1030 | ||
| 2665 | 15년 전 | 1217 | ||
| 2664 | 15년 전 | 948 | ||
| 2663 | 15년 전 | 975 | ||
| 2662 | 15년 전 | 894 | ||
| 2661 | 15년 전 | 1027 | ||
| 2660 | 15년 전 | 943 | ||
| 2659 | 15년 전 | 1539 | ||
| 2658 | 15년 전 | 777 | ||
| 2657 | 15년 전 | 748 | ||
| 2656 | 15년 전 | 1385 | ||
| 2655 | 15년 전 | 1278 | ||
| 2654 | 15년 전 | 1225 | ||
| 2653 | 15년 전 | 793 | ||
| 2652 | 15년 전 | 1587 | ||
| 2651 | 15년 전 | 973 | ||
| 2650 | 15년 전 | 1626 | ||
| 2649 |
windday
|
15년 전 | 1978 | |
| 2648 | 15년 전 | 1402 | ||
| 2647 | 15년 전 | 7600 | ||
| 2646 | 15년 전 | 1033 | ||
| 2645 | 15년 전 | 1249 | ||
| 2644 | 15년 전 | 978 | ||
| 2643 | 15년 전 | 1196 | ||
| 2642 | 15년 전 | 975 | ||
| 2641 | 15년 전 | 1188 | ||
| 2640 |
프리랜서개발자
|
15년 전 | 915 | |
| 2639 | 15년 전 | 2007 | ||
| 2638 | 15년 전 | 1019 | ||
| 2637 | 15년 전 | 925 | ||
| 2636 | 15년 전 | 1414 | ||
| 2635 | 15년 전 | 1311 | ||
| 2634 | 15년 전 | 1030 | ||
| 2633 | 15년 전 | 911 | ||
| 2632 | 15년 전 | 944 | ||
| 2631 | 15년 전 | 1230 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기