向oracle中添加下列内容
当前位置: 数据库>oracle
Oracle 在Linux上作为服务启动
来源: 互联网 发布时间:2017-04-30
本文导语: 新建文件名为Oracle [root@stark init.d]# pwd /etc/init.d [root@stark init.d]# touch oracle 向oracle中添加下列内容 #!/bin/bash # chkconfig: 35 95 1 # description: init script. to start/stop oracle database 10g, TNS listener # match these values to your e...
新建文件名为Oracle [root@stark init.d]# pwd /etc/init.d [root@stark init.d]# touch oracle
#!/bin/bash # chkconfig: 35 95 1 # description: init script. to start/stop oracle database 10g, TNS listener # match these values to your environment: export ORACLE_BASE=/oracle export ORACLE_HOME=/oracle/10.2 export ORACLE_TERM=xterm export PATH=/home$ORACLE_HOME/bin:$PATH:. export NLS_LANG=American_America.AL32UTF8 export ORACLE_SID=stark export DISPLAY=localhost:0 export ORACLE_USER=oracle case $1 in start) su - "$ORACLE_USER"