‘壹’ 如何在linux中设置开机自动启动oracle
对于LINUX 操作系统 有很多技术知识是我们需要学习的。这里我就给大家介绍Linux中设置oracle开机自动启动的 方法 。一起来看看吧。
Linux中设置oracle开机自动启动的方法
在terminal中切换到root用户
查看/etc/oratab文件的内容,其内容如下
[root@golonglee ~]# cat /etc/oratab | grep -v ^$
#
# This file is used by ORACLE utilities. It is created by root.sh
# and updated by the Database Configuration Assistant when creating
# a database.
# A colon, ':', is used as the field terminator. A new line terminates
# the entry. Lines beginning with a pound sign, '#', are comments.
#
# Entries are of the form:
# $ORACLE_SID:$ORACLE_HOME::
#
# The first and second fields are the system identifier and home
# directory of the database respectively. The third filed indicates
# to the dbstart utility that the database should , "Y", or should not,
# "N", be brought up at system boot time.
#
# Multiple entries with the same $ORACLE_SID are not allowed.
#
#
oel63:/home/oracle/app/oracle/proct/11.2.0/dbhome_1:N
使用命令vi /etc/oratab编辑文件/etc/oratab,在最后添加如下内容
##### what I have written is as following
oel63:/home/oracle/app/oracle/proct/11.2.0/dbhome_1:Y
#####Finished wrote in 2015-12-24
说明:/home/oracle/app/oracle/proct/11.2.0/dbhome_1为oracle的安装目录,要根据实际情况进行修改。
(注意:图中我用红色标记的N要改成Y)
找到最后的内容
oel63:/home/oracle/app/oracle/proct/11.2.0/dbhome_1:N
复制该行oel63:/home/oracle/app/oracle/proct/11.2.0/dbhome_1:N并注释掉
粘贴该行,并将该行
oel63:/home/oracle/app/oracle/proct/11.2.0/dbhome_1:N最后的N
改为Y
最后按2次ESC键,并输入:wq并按下enter保存,退出
使用命令vi /etc/rc.d/rc.local编辑rc.local文件,添加如下内容
##### what I have written is as following
su oracle -lc "/home/oracle/app/oracle/proct/11.2.0/dbhome_1/bin/lsnrctl start"
su oracle -lc /home/oracle/app/oracle/proct/11.2.0/dbhome_1/bin/dbstart
#####Finished wrote in 2015-12-24
说明:因为第一行命令中有空格所以用双引号(英文的双引号)
/home/oracle/app/oracle/proct/11.2.0/dbhome_1为oracle的安装目录,要根据实际情况进行修改。
最后按2次ESC键,并输入:wq并按下enter保存,退出,重启机器,验证成功。
是不是很简单呢~快跟着我一起学习吧!!!如果觉得这篇 文章 不错的话就给我点一个赞吧。
‘贰’ 怎么用linux命令连接racle数据库(linux如何连接数据库)
可以通过SSH或者等可以直接连接Linux操作系统的软件,连接到Linux系统。下面具体介绍一下:
1、登录到Linux后,就可以在命令窗口直接对Linux进行操作了。先将用户切换到Oracle。当显示为[oracle@db~]$时,说明切唯基绝换成功。命令:su-oracle;
2、切换到Oracle用户之后,我们登录到到sqlplus,使用dba权限登录到sqlplus。在sqlplus中,我们使用conn连接一下我们具体想要操作的数据库用户。命令:connusername/password,示connected表示连接成功;
3、在SQL>中输入想要进行操作的sql语句,这里我们举个简单的例子,以一个单表查询为例进行演示:sql语句:select*fromtablename。
(2)linux下打开oracle扩展阅读:
Linux是一套免费使用和自由传播的类Unix操作系统,是一个基于POSIX和UNIX的多用户、多任务、支持多线程和多CPU的操作系统。它能运行主要的UNIX工具软件、应用程序和网络协议。它支持32位和64位硬件。Linux继承了Unix以网络为核心的设计思想,是一个性能稳定的多用户网络操作系统。
Linux操作系统诞生于1991年10月5日锋老(这是第一次正式向外公布时间)。Linux存在着许多不同的Linux版本,但它们都使用了Linux内核。Linux可安装在各种计算机硬件设指姿备中,比如手机、平板电脑、路由器、视频游戏控制台、台式计算机、大型机和超级计算机。
‘叁’ Linux下如何启动、关闭Oracle以及打开关闭监听
1、以oracle用户登录系统,如果是root用户,使用su - oracle切换用户。
‘肆’ Linux下安装了Oracle怎么开启
工具:sqlplus
打开Linux字符集界面,登录Oracle用户
启动监听:lsnrctl start
sqlplus / as sysdba(注意空格)
当现实已连接时,输入startup回车
select status from v$instance;查看是不是OPEN,如果是,此时说明数据库已经开启。