|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
常用的linux命令,尤其是一些能帮你提高开发效率的命令,(eg:grep,awk,sed,split等);
ORACLE随Linux开机启动
情况:VM+redhat9+oracle9.2
1.修正/etc/oratab内容ORACLE_SID:/u01/app/oracle/product/10.2.0/db_1:N改成以下内容
#addbelowcontent
#$ORACLE_SID:$ORACLE_HOME:Y
demo:/u01/app/oracle/product/9.2.0:Y
2.修正/etc/rc.local文件加以下内容####################################
location:/etc/rc.local
####################################
!/bin/sh
Thisscript.willbeexecuted*after*alltheotherinitscripts.
Youcanputyourowninitializationstuffinhereifyoudont
wanttodothefullSysVstyle.initstuff.
touch/var/lock/subsys/local
addbelowcontent
su-oracle-c"/bin/sh/home/oracle/dbstart.sh"
3newfiledbstart.shvi/home/oracle/dbstart.sh的内容exportORACLE_BASE=/u01/app/oracle
exportORACLE_HOME=/u01/app/oracle/product/9.2.0
exportORACLE_SID=demo
startthelistener
/u02/oracle/ora/bin/lsnrctlstart
#startthedb
sqlplus"/assysdba"<<eof
startup
exit
eof
成绩:
当开闭linux时,oracle也会封闭,对事件有哪些影响
</p>
虽然Linux桌面应用发展很快,但是命令在Linux中依然有很强的生命力。Linux是一个命令行组成的操作系统,精髓在命令行。 |
|