服务器 频道

开机启动oracle的脚本

  【IT168 服务器学院】开机启动oracle的脚本

  Filename:/etc/rc2.d/S99dbora817
  1.Content:
  #!/bin/sh
  ORACLE_HOME=/opt/oracle/product/8.1.7
  case "" in
  start)
  su - oracle -c "$ORACLE_HOME/bin/dbstart" &
  su - oracle -c "$ORACLE_HOME/bin/lsnrctl start" &
  ;;
  stop)
  su - oracle -c "$ORACLE_HOME/bin/dbshut" &
  esac
  
  2.then, modify the files dbshut and dbstart to fit your system.
  2.1. modify the dbshut''s "ORATAB=/etc/oratab" to "ORATAB=/var/opt/oracle/oratab"
  2.2. modify the dbstart''s "ORATAB=/etc/oratab" to "ORATAB=/var/opt/oracle/oratab"
  2.3. modify the /var/opt/oracle/oratab to "dbora817:/opt/oracle/product/8.1.7:Y"

 

0
相关文章