欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入 将oracle加载为linux标准系统服务脚本 [root@test11 root]# more /etc/init.d/oracle #!/bin/sh #chkconfig: 2345 80 05 #description: Oracle 8 Server ORA_HOME=/oracle/product/9.2.0 ORA_OWNER=
欢迎进入oracle社区论坛,与200万技术人员互动交流 >>进入
将oracle加载为linux标准系统服务脚本
[root@test11 root]# more /etc/init.d/oracle
#!/bin/sh
#chkconfig: 2345 80 05
#description: Oracle 8 Server
ORA_HOME=/oracle/product/9.2.0
ORA_OWNER=oracle
case "" in
"start")
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start"
su - $ORA_OWNER -c "$ORA_HOME/bin/start.sh"
;;
"stop")
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
su - $ORA_OWNER -c "$ORA_HOME/bin/shutdown.sh"
;;
esac
[root@test11 root]# more /oracle/product/9.2.0/bin/start.sh
sqlplus /nolog connect / as sysdba
startup
exit
exit
echo "oracle have started"
[root@test11 root]# more /oracle/product/9.2.0/bin/shutdown.sh
sqlplus /nolog connect / as sysdba
shutdown immediate
exit
exit
echo "oracle have shutdown"
本文档主要讲述的是Android架构基本知识;Android依赖Linux内核2.6来提供核心服务,比如进程管理、网络协议栈、硬件驱动。在这里,Linux内核作为硬件层和系统软件栈层之间的一个抽象层。这个操作系统并非类GNU/Linux的,因为其系统库,系统初始化和编程接口都和标准的Linux系统是有所不同的。 Android 包含一些C/C++库、媒体库、数据库引擎库等等,这些库能被Android系统中不同的组件使用,通过 Android 应用程序框架为开发者提供服务。希望本文档会给有需要的朋友带来帮助
0
#chkconfig --add oracle

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号