|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
给你装的系统里为ubuntu12.04,它已经封装的很臃肿了,但是考虑到你没有很多时间投入其中,所以给你装了它,但是怎么用它提高开发效率,需要你在学习的过程中不断总结;
设置Oracle实例和监听服务自启动
1.增添启动剧本
touch/etc/init.d/orcl
viorcl
#!/bin/bash
#whoami
#root
#chkconfig:3455149
#/etc/init.d/orcl
#description:startstheoracledabasedeamons
#
ORA_HOME=/home/oracle/product/10.2.0/db_1/
ORA_OWNER=oracle
case"{GetProperty(Content)}"in
start)
echo-n"Startingorcl:"
su-$ORA_OWNER-c"$ORA_HOME/bin/dbstart"&
su-$ORA_OWNER-c"$ORA_HOME/bin/lsnrctlstart"
touch/var/lock/subsys/orcl
echo
;;
stop)
echo-n"shuttingdownorcl:"
su-$ORA_OWNER-c"$ORA_HOME/bin/dbshut"&
su-$ORA_OWNER-c"$ORA_HOME/bin/lsnrctlstop"
rm-f/var/lock/subsys/orcl
echo
;;
restart)
echo-n"restartingorcl:"
{GetProperty(Content)}stop
{GetProperty(Content)}start
echo
;;
*)
echo"Usage:`basename{GetProperty(Content)}`start|stop|restart"
exit1
esac
exit0
保留orcl并加入
2.增添设置服务
/sbin/chkconfig--addorcl
3.修正/etc/oratab文件
vi/etc/oratab
ORACLE_SID:ORACLE_HOME:Y--是不是自启动
4.重启测试一下
大概复杂的设置/etc/rc.d/rc.local增添两条启动命令
su-oracle-c/home/oracle/product/10.2.0/db_1/bin/dbstart
su-oracle-c/home/oracle/product/10.2.0/db_1/bin/lsnrctlstart
</p>
Linux的常用命令find,察看man文档,初学者一定会觉得太复杂而不原意用,但是你一旦学会就爱不释手。 |
|