熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

Oracle 9i 在Linux 下的安裝 (下)

2022-06-13   來源: Oracle 

   
  這裡可以選擇一種適合你的數據庫模版一般我們選第一種通用的數據庫模版如果你需要使用數據倉庫則可以使用選擇數據倉庫的模版進行安裝確認後按Next進入下一步
   
   這一步是確認Oraclei的SID和全局數據庫的名字SID的值我們在環境變量中已經設好了所以這裡就自動顯示了全局數據庫名(Global Database Name)我們可以也指定成和SID的值相同確認後按Next進入下一步
   
  前面我們提到了數據庫的字符類型在數據庫超作中是很關鍵的這一步就是設置數據庫的字符集前面我們設置的是NLS_LANG=american_americaZHSGBK所以我們選擇Simplifiled Chinese ZHSGBK按Next進入下一步
   
  因為我們在前面選擇了Enterprise的版本進行安裝系統會安裝Oracle Web Server安裝Oracle Web Server需要使用JDK我們使用Browse按鈕把前面安裝JDK的目錄指定好以便系統能在安裝過程中找到需要的應用程序確認按Next進入下一步
   
  進行完所有選擇後系統會給出一個安裝概要這裡列舉了你選擇安裝的組件確認你要安裝的東西都在列表內後安Install鈕進行安裝如果不需要安裝其它的程序則按Exit退出安裝界面
   
  Oracle的安裝速度視服務器的性能一般來說需要裝分鐘的時間在安裝過程中可能會有對話框彈出對話框內會有一些需要root運行的命令要求你執行這時候另外開一個控制台窗口su成root並運行提示框內的命令運行完畢後按確定繼續安裝
   
  安裝完數據庫後系統會運行配置工具對系統進行網絡和數據庫的配置配置完成後系統會自動啟動數據庫並開啟Oracle Web Server所有配置完後按Next完成安裝
  
  如果一切正常OUI會出現The Installation Of Oraclei Database Was successful的字樣這表明你的Oraclei數據庫安裝正常了如果需要安裝其它的內容按Next Install鈕進行其它內容的安裝否則按Exit退出安裝
  使用Oracle i 數據庫 
  安裝完畢後Oracle數據庫會自動啟動下面我們用實際超作來說明一下Oracle i數據庫的啟動和關閉 
  以oracle用戶登陸數據庫開個控制台窗口 
  關閉Oracle i 數據庫 
  [oracle@wing /oracle]$ sqlplus / as sysdba //以sysdba用戶登陸數據庫 
  
  SQL*Plus: Release Production on Wed Jul ::  
  
  (c) Copyright Oracle Corporation All rights reserved 
  Connected to: 
  Oraclei Enterprise Edition Release Production 
  With the Partitioning option 
  JServer Release Production 
  運行shudown命令關閉數據庫 
  SQL> shutdown 
  Database closed 
  Database dismounted 
  ORACLE instance shut down 
  SQL> 
  啟動Oracle i 數據庫 
  [oracle@wing bin]$ sqlplus / as sysdba 
  
  SQL*Plus: Release Production on Wed Jul ::  
  
  (c) Copyright Oracle Corporation All rights reserved 
  
  Connected to an idle instance 
  
  SQL> startup 
  ORACLE instance started 
  
  Total System Global Area bytes 
  Fixed Size bytes 
  Variable Size bytes 
  Database Buffers bytes 
  Redo Buffers bytes 
  Database mounted 
  Database opened 
  SQL> 
  
  啟動Oracle i監聽程序 
  Oracle的監聽程序主要是為客戶端的連接提供接口 
  [oracle@wing bin]$ lsnrctl 
  
  LSNRCTL for Linux: Version Production on JUL :: 
  
  Copyright (c) Oracle Corporation All rights reserved 
  
  Welcome to LSNRCTL type help for information 
  
  LSNRCTL> start 
  Starting /oracle/product//bin/tnslsnr: please wait 
  
  TNSLSNR for Linux: Version Production 
  System parameter file is /oracle/product//network/admin/listenerora 
  Log messages written to /oracle/product//network/log/listenerlog 
  Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC))) 
  Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=wing)(PORT=))) 
  
  Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC))) 
  STATUS of the LISTENER 
   
  Alias LISTENER 
  Version TNSLSNR for Linux: Version Production 
  Start Date JUL :: 
  Uptime days hr min sec 
  Trace Level off 
  Security OFF 
  SNMP OFF 
  Listener Parameter File /oracle/product//network/admin/listenerora 
  Listener Log File /oracle/product//network/log/listenerlog 
  Listening Endpoints Summary 
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC))) 
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=wing)(PORT=))) 
  Services Summary 
  Service PLSExtProc has instance(s) 
  Instance PLSExtProc status UNKNOWN has handler(s) for this service 
  Service oracle has instance(s) 
  Instance oracle status UNKNOWN has handler(s) for this service 
  The command completed successfully 
  LSNRCTL> 
  關閉Oracle i監聽程序 
  [oracle@wing bin]$ lsnrctl 
  
  LSNRCTL for Linux: Version Production on JUL :: 
  
  Copyright (c) Oracle Corporation All rights reserved 
  
  Welcome to LSNRCTL type help for information 
  LSNRCTL> stop 
  Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC))) 
  The command completed successfully 
  LSNRCTL> 
  
  關閉Oracle Web Server 
  cd $ORACLE_HOME/Apache/Apache/bin 
  /stopJServsh 
  /oracle/product//Apache/Apache/bin/apachectl stop: httpd stopped 
  
  啟動Oracle Web Server 
  cd $ORACLE_HOME/Apache/Apache/bin[oracle@wing bin]$ /startJServsh 
  /oracle/product//Apache/Apache/bin/apachectl start: httpd started 
  啟動Oracle Web Server後默認的端口號是 
  在客戶端浏覽器地址欄輸入
  如果浏覽器出現以下界面則表示Oracle Web Server運行正常
  //gif >
  
  
   
  
  
  
  

From:http://tw.wingwit.com/Article/program/Oracle/201311/16584.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.