CentOS上安裝Oracle XE指南,centosxe

來源:互聯網
上載者:User

CentOS上安裝Oracle XE指南,centosxe

引言: 在Centos上安裝oracle XE主要用來解決學習和測試的用處,雖然簡單,但也是涉及到了諸多的步驟和細節問題。


1.  下載Oracle XE

     訪問http://www.oracle.com/technetwork/cn/database/database-technologies/express-edition/downloads/index.html, 根據作業系統,選擇版本下載即可。

2.  解壓縮Oracle XE安裝程式

    unzip oracle-xe-11.2.0-1.0.x86_64.rpm.zip

2.1 建立使用者

root@localhost ~]# groupadd oinstall   //建立oracle資料庫安裝組[root@localhost ~]# groupadd dba        //建立oracle資料庫管理組[root@localhost ~]# useradd -m -g oinstall -G dba oracle  //建立oracle使用者[root@localhost ~]# id oracleuid=501(oracle) gid=501(oinstall) groups=501(oinstall),502(dba)passwd oracle      //為Oracle使用者佈建密碼:Changing password for user oracle.New UNIX password:BAD PASSWORD: it is based on a dictionary wordRetype new UNIX password:passwd: all authentication tokens updated successfully.

4. 建立安裝目錄

   chown -R oracle:oinstall /u01/app
    chmod -R 775 /u01/app


5.  開始安裝

     >> cd Disk1

     >> rpm -ivh oracle-xe-11.2.0-1.0.x86_64.rpm
    

6. 回合組態oracle xe的命令

   >> /etc/init.d/oracle-xe configure

   

7. 修改bash_profile中環境變數

  安裝結束後,系統會自動建立一個名為oracle的使用者,home dir位置在 /u01/app/oracle 也就是資料庫安裝的位置。

 

  修改.bash_profile.在其中添加如下內容:

TMP=/tmp; export TMPTMPDIR=$TMP; export TMPDIRORACLE_HOSTNAME=dbserver; export ORACLE_HOSTNAMEORACLE_UNQNAME=ORADB; export ORACLE_UNQNAMEORACLE_BASE=/u01/app/oracle; export ORACLE_BASEORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOMEORACLE_SID=ORADB; export ORACLE_SIDPATH=/usr/sbin:$PATH; export PATHPATH=$ORACLE_HOME/bin:$PATH; export PATHLD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATHCLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH

注意: 這個.bash_profile修改是在你所啟動並執行sql的使用者下,比如使用者oracle.在此之前,需要切換到使用者oracle. 然後在oracle使用者修改其.bash_profile.

8.  測試是否成功

    >> echo $ORACLE_BASE

    >> sqlplus / as sysdba  #查看是否可以進入sql命令列


相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.