리눅스 상에서 오라클 설치
# 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년 전
ㄳㄳ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 170 | ||
| 8229 | 9년 전 | 146 | ||
| 8228 |
커네드커네드
|
9년 전 | 191 | |
| 8227 | 9년 전 | 232 | ||
| 8226 | 9년 전 | 247 | ||
| 8225 | 9년 전 | 228 | ||
| 8224 | 9년 전 | 237 | ||
| 8223 | 9년 전 | 215 | ||
| 8222 |
|
9년 전 | 279 | |
| 8221 | 9년 전 | 176 | ||
| 8220 | 9년 전 | 213 | ||
| 8219 | 9년 전 | 190 | ||
| 8218 | 9년 전 | 234 | ||
| 8217 |
star3840
|
9년 전 | 201 | |
| 8216 | 9년 전 | 267 | ||
| 8215 | 9년 전 | 212 | ||
| 8214 | 9년 전 | 327 | ||
| 8213 | 9년 전 | 281 | ||
| 8212 | 9년 전 | 189 | ||
| 8211 | 9년 전 | 362 | ||
| 8210 | 9년 전 | 363 | ||
| 8209 | 9년 전 | 437 | ||
| 8208 | 9년 전 | 326 | ||
| 8207 | 9년 전 | 333 | ||
| 8206 |
|
9년 전 | 282 | |
| 8205 | 9년 전 | 254 | ||
| 8204 | 9년 전 | 243 | ||
| 8203 | 9년 전 | 323 | ||
| 8202 | 9년 전 | 237 | ||
| 8201 | 9년 전 | 266 | ||
| 8200 | 9년 전 | 280 | ||
| 8199 | 9년 전 | 305 | ||
| 8198 | 9년 전 | 267 | ||
| 8197 | 9년 전 | 252 | ||
| 8196 | 9년 전 | 674 | ||
| 8195 | 9년 전 | 265 | ||
| 8194 | 9년 전 | 373 | ||
| 8193 | 9년 전 | 280 | ||
| 8192 | 9년 전 | 296 | ||
| 8191 | 9년 전 | 253 | ||
| 8190 | 9년 전 | 234 | ||
| 8189 | 9년 전 | 297 | ||
| 8188 | 9년 전 | 230 | ||
| 8187 | 9년 전 | 241 | ||
| 8186 | 9년 전 | 238 | ||
| 8185 | 9년 전 | 412 | ||
| 8184 | 9년 전 | 196 | ||
| 8183 | 9년 전 | 402 | ||
| 8182 | 9년 전 | 274 | ||
| 8181 | 9년 전 | 229 | ||
| 8180 | 9년 전 | 799 | ||
| 8179 | 9년 전 | 573 | ||
| 8178 | 9년 전 | 440 | ||
| 8177 |
kiplayer
|
9년 전 | 434 | |
| 8176 | 9년 전 | 462 | ||
| 8175 | 9년 전 | 353 | ||
| 8174 | 9년 전 | 347 | ||
| 8173 | 9년 전 | 434 | ||
| 8172 | 9년 전 | 313 | ||
| 8171 | 9년 전 | 275 | ||
| 8170 | 9년 전 | 393 | ||
| 8169 |
커네드커네드
|
9년 전 | 350 | |
| 8168 | 9년 전 | 429 | ||
| 8167 | 9년 전 | 418 | ||
| 8166 | 9년 전 | 316 | ||
| 8165 | 9년 전 | 262 | ||
| 8164 | 9년 전 | 397 | ||
| 8163 | 9년 전 | 403 | ||
| 8162 | 9년 전 | 387 | ||
| 8161 | 9년 전 | 404 | ||
| 8160 |
|
9년 전 | 620 | |
| 8159 | 9년 전 | 565 | ||
| 8158 | 9년 전 | 361 | ||
| 8157 | 9년 전 | 472 | ||
| 8156 | 9년 전 | 350 | ||
| 8155 | 9년 전 | 357 | ||
| 8154 |
00년생용띠
|
9년 전 | 692 | |
| 8153 | 9년 전 | 323 | ||
| 8152 |
|
9년 전 | 506 | |
| 8151 | 9년 전 | 503 | ||
| 8150 | 9년 전 | 616 | ||
| 8149 |
Jangfolk
|
9년 전 | 475 | |
| 8148 | 9년 전 | 287 | ||
| 8147 | 9년 전 | 468 | ||
| 8146 | 9년 전 | 555 | ||
| 8145 | 9년 전 | 510 | ||
| 8144 | 9년 전 | 477 | ||
| 8143 | 9년 전 | 308 | ||
| 8142 | 9년 전 | 519 | ||
| 8141 | 9년 전 | 462 | ||
| 8140 | 9년 전 | 1026 | ||
| 8139 | 9년 전 | 380 | ||
| 8138 |
전갈자리남자
|
9년 전 | 483 | |
| 8137 | 9년 전 | 519 | ||
| 8136 | 9년 전 | 848 | ||
| 8135 |
|
9년 전 | 889 | |
| 8134 |
PlayPixel
|
9년 전 | 629 | |
| 8133 |
|
9년 전 | 535 | |
| 8132 | 9년 전 | 575 | ||
| 8131 | 9년 전 | 933 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기