리눅스 상에서 오라클 설치 |

리눅스 상에서 오라클 설치

# 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개

참 간단해졌군여..
예전 2001년도에 레드햇 리눅스에서 오라클8 설치할때 참 고생많이 헀더랬는데..
커널 다운그래이드하고 설치하고.. 삽질하고..

리눅스만 100번은 깔았던거 같아요..
저도 고생많이 했네요. ^^
오..예전에 이걸로 밤새던 기억이 새록새록..감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
15년 전 조회 1,548
15년 전 조회 1,029
15년 전 조회 1,018
15년 전 조회 1,446
15년 전 조회 1,007
15년 전 조회 2,128
15년 전 조회 2,634
15년 전 조회 1,185
15년 전 조회 1,204
15년 전 조회 1,864
15년 전 조회 1,249
15년 전 조회 1,375
15년 전 조회 1,766
15년 전 조회 1,940
15년 전 조회 2,025
15년 전 조회 1,450
15년 전 조회 2,158
15년 전 조회 1,948
15년 전 조회 1,179
15년 전 조회 2,159
15년 전 조회 1,293
15년 전 조회 1,155
15년 전 조회 1,195
15년 전 조회 1,137
15년 전 조회 1,308
15년 전 조회 1,332
15년 전 조회 1,545
15년 전 조회 3,645
15년 전 조회 2,139
15년 전 조회 1,264
15년 전 조회 1,957
15년 전 조회 1,120
15년 전 조회 1,254
15년 전 조회 2,230
15년 전 조회 2,159
15년 전 조회 1,206
15년 전 조회 1,516
15년 전 조회 1,449
15년 전 조회 1,412
15년 전 조회 1,586
15년 전 조회 1,329
15년 전 조회 1,339
15년 전 조회 1,271
15년 전 조회 1,439
15년 전 조회 1,330
15년 전 조회 1,935
15년 전 조회 1,174
15년 전 조회 1,131
15년 전 조회 1,760
15년 전 조회 1,670
15년 전 조회 1,631
15년 전 조회 1,181
15년 전 조회 1,964
15년 전 조회 1,356
15년 전 조회 1,995
15년 전 조회 2,366
15년 전 조회 1,796
15년 전 조회 7,996
15년 전 조회 1,416
15년 전 조회 1,651
15년 전 조회 1,370
15년 전 조회 1,586
15년 전 조회 1,350
15년 전 조회 1,575
15년 전 조회 1,288
15년 전 조회 2,384
15년 전 조회 1,391
15년 전 조회 1,301
15년 전 조회 1,808
15년 전 조회 1,689
15년 전 조회 1,420
15년 전 조회 1,284
15년 전 조회 1,329
15년 전 조회 1,613
15년 전 조회 1,195
15년 전 조회 1,269
15년 전 조회 1,452
15년 전 조회 2,170
15년 전 조회 1,408
15년 전 조회 1,518
15년 전 조회 1,276
15년 전 조회 1,204
15년 전 조회 1,592
15년 전 조회 2,032
15년 전 조회 1,317
15년 전 조회 1,664
15년 전 조회 1,919
15년 전 조회 1,296
15년 전 조회 1,210
15년 전 조회 1,375
15년 전 조회 1,433
15년 전 조회 1,230
15년 전 조회 1,518
15년 전 조회 1,613
15년 전 조회 1,519
15년 전 조회 3,449
15년 전 조회 1,099
15년 전 조회 1,677
15년 전 조회 1,251
15년 전 조회 2,059