程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> 關於Oracle數據庫 >> Oracle9i iSQL*PLUS的配置過程

Oracle9i iSQL*PLUS的配置過程

編輯:關於Oracle數據庫

    iSQL*PLUS
    結構如下: 配置過程如下:
    1 配置HTTPD
    $ cd $ORACLE_HOME/Apache/Apache/conf
    $ vi httpd.conf
    1.1 設定Server name或者Server IP地址和端口,使用非root用戶啟動HTTPD進程,其端口必須大於1024,
    如: Listen=hpserv01:7777
    1.2 設定DocumentRoot,
    如DocumentRoot="/home/htdocs"
    1.3 如果你也使用web server作為document content server,那麼需要配置:
    IndexOptions NameWidth=*
    IndexOptions FoldersFirst
    AddIcon /icons/text.gif .txt .log
    1.4 檢查oracle_apache.conf文件
    在httpd.conf的最後,iSQL*PLUS的配置文件包含在oracle_apache.conf中。
    1.5 一個小BUG
    注釋jserv.properties中"wrapper.env.copy=DISPLAY"行,否則httpd進程不能啟動。
    $ vi $ORACLE_HOME/Apache/Jserv/etc/jserv.propertie
    #wrapper.env.copy=DISPLAY

    2 配置TNS_NAMES
    如:tnsnames.ora
    orcl92 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = ORCL92)
    )(CONNECT_DATA = (SID = ORCL92))
    )

    3 啟動HTTPD
    $ORACLE_HOME/Apache/Apache/bin/apachectl [start|stop]

    4 登陸iSQL*PLUS http://hpserv01:7777/isqlplus /

    5 以SYSDBA或SYSOPER登陸iSQL*PLUS
    http://hpserv01:7777/isqlplusdba
    創建DBA口令文件
    $ cd $ORACLE_HOME/sqlplus/admin
    $ORACLE_HOME/Apache/Apache/bin/htpasswd iplusdba.pw oracle
    Automatically using MD5 format on Unix.
    New password: *****
    Re-type new password: *****
    Adding password for user oracle

    6 配置iSQL*PLUS
    To change the settings you must edit the isqlplus.conf configuration file then stop and start the HTTP daemons.
    The configuration file lives in $ORACLE_HOME/sqlplus/admin.
    Currently, the following server parameter settings can be adjusted: iSQLPlusNumberOfThreads
    iSQLPlusLogLevel
    iSQLPlusTimeOutInterval
    iSQLPlusHashTableSize
    iSQLPlusConnectIdList
    -idle-timeout
    Details can be found in the SQL*Plus manual from the 9.2 documentation, available online at http://tahiti.oracle.com.

    7 ORA9iR2 SP
    A patch is available as a download from Metalink - the Oracle bug ID is 2581911

    Oracle9i iSQL*PLUS的配置過程 三聯教程

    是Oracle9i Release2(9.2)提供的新功能,通過WEB浏覽器登陸。可以以HTML表格形式顯示結果,具有歷史命令工具。可以通過HTTPD密碼文件以 SYSDBA或SYSOPER身份登陸iSQL*PLUS。另外,它的配置十分簡單,使用標准的CGI/Apache/Jserv,並且不需要安裝 ORA9iAS。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved