這裡可以選擇一種適合你的數據庫模版
這一步是確認Oracle
前面我們提到了
因為我們在前面選擇了Enterprise的版本進行安裝
進行完所有選擇後
Oracle的安裝速度視服務器的性能一般來說需要裝
安裝完數據庫後系統會運行配置工具對系統進行網絡和數據庫的配置
如果一切正常
使用Oracle
安裝完畢後Oracle數據庫會自動啟動
以oracle用戶登陸數據庫
關閉Oracle
[oracle@wing /oracle]$ sqlplus
SQL*Plus: Release
(c) Copyright
Connected to:
Oracle
With the Partitioning option
JServer Release
運行shudown命令關閉數據庫
SQL> shutdown
Database closed
Database dismounted
ORACLE instance shut down
SQL>
啟動Oracle
[oracle@wing bin]$ sqlplus
SQL*Plus: Release
(c) Copyright
Connected to an idle instance
SQL> startup
ORACLE instance started
Total System Global Area
Fixed Size
Variable Size
Database Buffers
Redo Buffers
Database mounted
Database opened
SQL>
啟動Oracle
Oracle的監聽程序主要是為客戶端的連接提供接口
[oracle@wing bin]$ lsnrctl
LSNRCTL for Linux: Version
Copyright (c)
Welcome to LSNRCTL
LSNRCTL> start
Starting /oracle/product/
TNSLSNR for Linux: Version
System parameter file is /oracle/product/
Log messages written to /oracle/product/
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
Start Date
Uptime
Trace Level off
Security OFF
SNMP OFF
Listener Parameter File /oracle/product/
Listener Log File /oracle/product/
Listening Endpoints Summary
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=wing)(PORT=
Services Summary
Service
Instance
Service
Instance
The command completed successfully
LSNRCTL>
關閉Oracle
[oracle@wing bin]$ lsnrctl
LSNRCTL for Linux: Version
Copyright (c)
Welcome to LSNRCTL
LSNRCTL> stop
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC)))
The command completed successfully
LSNRCTL>
關閉Oracle Web Server
cd $ORACLE_HOME/Apache/Apache/bin
/oracle/product/
啟動Oracle Web Server
cd $ORACLE_HOME/Apache/Apache/bin[oracle@wing bin]$
/oracle/product/
啟動Oracle Web Server後默認的端口號是
在客戶端浏覽器地址欄輸入
如果浏覽器出現以下界面則表示Oracle Web Server運行正常
From:http://tw.wingwit.com/Article/program/Oracle/201311/16584.html