Oracle XE - 윈디하나의 솔라나라
|
libaio
와 bc
패키지를 추가로 설치해준다.
root@wll ~ # yum install libaio bc
root@wll ~ # unzip oracle-xe-11.2.0-1.0.x86_64.rpm.zip root@wll ~ # cd Disk1 root@wll ~/Disk1 # rpm -ivh oracle-xe-11.2.0-1.0.x86_64.rpm 준비 중... ########################################### [100%] 1:oracle-xe ########################################### [100%] Executing post-install steps... You must run '/etc/init.d/oracle-xe configure' as the root user to configure the database.
/u01/app/oracle
에 설치되며, oracle
사용자와 dba
그룹을 만든다.
root@wll ~ # /etc/init.d/oracle-xe configure Oracle Database 11g Express Edition Configuration ------------------------------------------------- This will configure on-boot properties of Oracle Database 11g Express Edition. The following questions will determine whether the database should be starting upon system boot, the ports it will use, and the passwords that will be used for database accounts. Press <Enter> to accept the defaults. Ctrl-C will abort. Specify the HTTP port that will be used for Oracle Application Express [8080]: Specify a port that will be used for the database listener [1521]: Specify a password to be used for database accounts. Note that the same password will be used for SYS and SYSTEM. Oracle recommends the use of different passwords for each database account. This can be done after initial configuration: Confirm the password: Do you want Oracle Database 11g Express Edition to be started on boot (y/n) [y]: Starting Oracle Net Listener...Done Configuring database...Done Starting Oracle Database 11g Express Edition instance...Done Installation completed successfully.외부에서 접속 가능하도록 설정하고, XE의 관리자 페이지의 포트를 기본 8080에서 8383으로 변경한다.
root@wll ~ # . /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh root@wll ~ # sqlplus system SQL> EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);기본적으로 사용하는 관리용 HTTP 포트는 8080번이다. 변경하려면 아래와 같이 할 수 있다.
root@wll ~ # sqlplus system SQL> EXEC DBMS_XDB.SETHTTPPORT('8383'); SQL> SELECT DBMS_XDB.GETHTTPPORT FROM DUAL;
$ORACLE_HOME/config/scripts/gettingstarted.sh
을 실행해도 된다.
root@wll ~ # /etc/init.d/oracle-xe start
oracle-xe configure
명령을 실행했다면 이미 시작되어있다. 종료는 아래와 같이 할 수 있다.
root@wll ~ # /etc/init.d/oracle-xe stop
oracle-xe
패키지를 삭제하면된다.
root@wll ~ # rpm -e oracle-xe
오라클 XE와 같이 작업하기 전에, oracle_env.sh 를 실행하면 오라클 실행에 필요한 환경이 설정된다.
root@wll ~ # . /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh root@wll ~ # sqlplus system ...
이후부터는 테이블 스페이스를 생성하고 사용자를 생성한 후, 생성한 사용자로 로그인해 스키마를 생성하는 식으로 사용하면 된다. 그냥 오라클 DBMS 11 사용하듯이 사용하면 된다. 윈디하나의 솔라나라: 오라클 샘플 스키마 (작성중) 참고해보자.
RSS ATOM XHTML 5 CSS3 |
Copyright © 2004-2024 Jo HoSeok. All rights reserved. |