e股脑电脑教程网
  • 首 页
  • 操作系统
  • 应用软件
  • 下载工具
  • 影音视频
  • 办公软件
  • 媒体制作
  • 网站建设
  • 平面设计
  • 数据库
  • 程序开发
  • 视频教程
编辑推荐: | 文章搜索:
您现在的位置: e股脑 >> 操作系统 >> Linux教程 >> 在Linux下安装Oracle Database 9i >> 教程正文
 
教程搜索
 
 
相关教程
  • Linux安装要点
  • 高效使用Linux的好习惯
  • WINE安装教程
  • 如何远程安装Linux操作系统
  • 图解红旗Linux 4.0桌面系统的安装
  • Linux操作系统网络应用解疑
  • 怎样在UNIX系统下安装MySQL
  • 中软linux券商管理办公系统解决方案
  • 中软Linux办公自动化系统解决方案
  • 中软Linux指纹仪识别系统解决方案
  • 中软linux流媒体服务解决方案
  • RedHat7.2简明汉化(整理版)
  • Linux服务器安全点滴
  • 服务器伪装信息修改法
  • 如何配置FTP服务器
  • 在Linux下安装Oracle Database 9i
 
 

图文教程


  • Windows抢了谁的饭碗 非主流操作系统To

  • 地球还是火星 平常心看“非主流”

  • 综合运用Office 2007批量制作奖状

  • 没有系统盘如何才能修复受损系统?

  • 巧妙运用Excel中边界的附加功能!
 
 
赞 助 商
 
 
在Linux下安装Oracle Database 9i
  • 来源:e股脑
  • 点击次数:
  • 更新时间:2007-8-9
llation Of Oracle9i Database Was successful.的字样,这表明你的Oracle9i数据库安装正常了,如果需要安装其它的内容按Next Install钮进行其它内容的安装,否则按Exit退出安装。


使用Oracle 9i 数据库

安装完毕后Oracle数据库会自动启动,下面我们用实际超作来说明一下Oracle 9i数据库的启动和关闭。

以Oracle用户登陆数据库,开个控制台窗口;

关闭Oracle 9i 数据库

[Oracle@wing /Oracle]$ sqlplus " / as sysdba" //以sysdba用户登陆数据库

SQL*Plus: Release 9.0.1.0.0 - Production on Wed Jul 11 15:35:31 2001

(c) Copyright 2001 Oracle Corporation. All rights reserved.

Connected to:

Oracle9i Enterprise Edition Release 9.0.1.0.0 - Production

With the Partitioning option

JServer Release 9.0.1.0.0 - Production

运行shudown命令关闭数据库

SQL> shutdown

Database closed.

Database dismounted.

Oracle instance shut down.

SQL>

启动Oracle 9i 数据库

[Oracle@wing bin]$ sqlplus " / as sysdba"

SQL*Plus: Release 9.0.1.0.0 - Production on Wed Jul 11 16:00:59 2001

(c) Copyright 2001 Oracle Corporation. All rights reserved.

Connected to an idle instance.

SQL> startup

Oracle instance started.

Total System Global Area 336356520 bytes

Fixed Size 279720 bytes

Variable Size 268435456 bytes

Database Buffers 67108864 bytes

Redo Buffers 532480 bytes

Database mounted.

Database opened.

SQL>

启动Oracle 9i监听程序

Oracle的监听程序主要是为客户端的连接提供接口

[Oracle@wing bin]$ lsnrctl

LSNRCTL for Linux: Version 9.0.1.0.0 - Production on 11-JUL-2001 16:12:17

Copyright (c) 1991, 2001, Oracle Corporation. All rights reserved.


Welcome to LSNRCTL, type "help" for information.

LSNRCTL> start

Starting /Oracle/product/9.0.1/bin/tnslsnr: please wait...

TNSLSNR for Linux: Version 9.0.1.0.0 - Production

System parameter file is /Oracle/product/9.0.1/network/admin/listener.ora

Log messages written to /Oracle/product/9.0.1/network/log/listener.log

Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC)))

Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=wing)(PORT=1521)))

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC)))

STATUS of the LISTENER

------------------------

Alias LISTENER

Version TNSLSNR for Linux: Version 9.0.1.0.0 - Production

Start Date 11-JUL-2001 16:12:58

Uptime 0 days 0 hr. 0 min. 0 sec

Trace Level off

Security OFF

SNMP OFF

Listener Parameter File /Oracle/product/9.0.1/network/admin/listener.ora

Listener Log File /Oracle/product/9.0.1/network/log/listener.log

Listening Endpoints Summary...

(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC)))

(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=wing)(PORT=1521)))

Services Summary...

Service "PLSExtProc" has 1 instance(s).

Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...

Service "Oracle" has 1 instance(s).

Instance "Oracle", status UNKNOWN, has 1 handler(s) for this service...


The command completed successfully

LSNRCTL>

关闭Oracle 9i监听程序

[Oracle@wing bin]$ lsnrctl

LSNRCTL for Linux: Version 9.0.1.0.0 - Production on 11-JUL-2001 16:12:17

Copyright (c) 1991, 2001, 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

./stopJServ.sh

/Oracle/product/9.0.1/Apache/Apache/bin/apachectl stop: httpd stopped

启动Oracle Web Server

cd $Oracle_HOME/Apache/Apache/bin

[Oracle@wing bin]$ ./startJServ.sh

/Oracle/product/9.0.1/Apache/Apache/bin/apachectl start: httpd started

启动Oracle Web Server后默认的端口号是7777

在客户端浏览器地址栏输入http://xxx.xx.xxx.xxx:7777/

如果浏览器出现以下界面则表示Oracle Web Server运行正常


上一页  1 2 3 
  • 上一篇教程: 让 Linux/Windows 联合体更好地工作
  • 下一篇教程: 如何配置FTP服务器
  •  

    关于本站 | 广告联系 | 版权声明 | 使用帮助

    Copyright © 2004-2008 www.egunao.com All rights reserved.