—操作详细过程: [root@localhost ~]#cd /etc/rc.d/init.d [root@localhost init.d]#touch dbauto用命令新建好文件(或是 在root用户etc/rc.d/init.d目录下直接新建文件),然后在文件中加入--下面--的脚本内容,保存 [root@localhost ~]# chmod 755 /etc/rc.d/init.d/dbauto // 设置文件权限 [root@localhost ~]# ls -l /etc/rc.d/init.d/dbauto -rwxr-xr-x 1 oracle oinstall 785 Oct 23 08:27 /etc/rc.d/init.d/dbauto [root@localhost ~]# chkconfig --add dbauto 服务添加服务列表 [root@localhost ~]# chkconfig --level 345 dbauto on //设置dbauto服务在指定的运行级别内被启动
Wednesday, July 07, 2010
add Linux service for auto boot Oralce instances
Key steps: