在Linux启动时自动启动Oracle监听和实例:
第一步:修改/etc/oratab文件,命令如下:
[oracle@oracle11g ~]$ vi /etc/oratab
找到:orcl:/home/oracle/app/oracle/product/11.2.0/dbhome_1:N 修改为:orcl:/home/oracle/app/oracle/product/11.2.0/dbhome_1:Y
(注意:根据自己的实际路径修改)
第二步:把lsnrctl start和dbstart添加到rc.local文件中,命令如下:
[oracle@oracle11g ~]$ vi
/etc/rc.d/rc.local
添加:
su oracle -lc
"/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin/lsnrctl
start"
su oracle -lc
/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin/dbstart
(注意:根据自己的实际路径修改)
注意:第一个命令有空格,所以要用引号的
重启试试吧!
设置自动启动和停止oracle实例:http://www.linuxdiyf.com/linux/14893.html
Linux非图形界面安装Oracle数据库:http://www.linuxdiyf.com/linux/14391.html
fedora22安装oracle11gr2:http://www.linuxdiyf.com/linux/13991.html
ubuntu-15.04-desktop-amd64.iso:安装Oracle11gR2:http://www.linuxdiyf.com/linux/13116.html
64位Ubuntu安装Oracle 11G:http://www.linuxdiyf.com/linux/9955.html