ChinaUnix.net
相关文章推荐:

linux 开机启动oracle脚本

系统环境redhat 4 +oracle10g 文件系统采用asm 如果开机后,我可以采用sqlpls /nolog 去登陆并启动oracle ,但我现在希望能在开机时就直接启动oracle 不需要手动启动oracle 。 修改,vi /etc/oratab +ASM:/oracle/oracle/product/10.2.0/db_1:y rac:/oracle/oracle/product/10.2.0/db_1:y 之后修改vi /etc/rc.local su - oracle -c '$oracle_HOME/bin/dbstart' 不知道还需要如果操作,系统高手能指点

by brave_script - Oracle - 2006-07-08 23:33:17 阅读(3729) 回复(1)

相关讨论

是不是需要写脚本启动? 装了2天的oracle终于装上去了。剩下的还是这个脚本的问题。本人因为项目需要才接触shell,希望各位大虾帮忙解决一下。:)谢谢~ 在网中人和bjgirl,atom的帮助下脚本已经初步成型。 more /home/test/host.txt|grep -v "#" |while read phost do ping $phost -c 4 | tail -n2 | xargs echo | awk -F '[ /]' '{print "IP:"'"$phost'","received="$4,"Time="$10,"Min="$17"ms","Avg="$18"ms","Max="$19"ms"...

by caiwolf - Linux论坛 - 2004-08-19 20:36:42 阅读(589) 回复(0)

是不是需要写脚本启动? 有没有现成的脚本

by caiwolf - Oracle - 2008-10-19 14:33:31 阅读(6839) 回复(5)

在REDHAT linux ADVANCE SERVER 2.1上安装oracle9I成功,但需手工输入DBSTART和LSNCTRL START才能启动oracle 怎样才能在机器启动时自动启动oracle?请高手指教

by gzocloud - Linux论坛 - 2003-08-03 17:49:20 阅读(671) 回复(2)

在REDHAT linux ADVANCE SERVER 2.1上安装oracle9I成功,但需手工输入DBSTART和LSNCTRL START才能启动oracle 怎样才能在机器启动时自动启动oracle?请高手指教

by gzocloud - Oracle - 2003-08-03 13:46:47 阅读(1104) 回复(2)

环境:oracle 9.2.0 linux: redhat ad 2.1 #!/bin/sh . /etc/rc.d/init.d/functions prog="oracle" start() { su - oracle << EOF cd $oracle_home chmod 755 .bash_profile ./.bash_profile chmod 644 .bash_profile lsnrctl start sqlplus /nolog << other connect sys/xxxx as sysdba startup exit other EOF } stop() { su - oracle << EOF cd $oracle_home chmod 755 .bash_profile ./.bash_profile ...

by out - Linux论坛 - 2004-07-01 23:27:08 阅读(1564) 回复(15)

我刚在FEDORA 上装了oracle9.2 ,刚开始很正常的,添加oracle用户,建新表等操作都可以的. 但,当我重启linux 后,问题就出来了. $ lsnrctl start error while loading shared libraries: libclntsh.so: cannot open shared object file: No such file or directory $ sqlplus /nolog error while loading shared libraries: libclntsh.so: cannot open shared object file: No such file or directory 都无法把oracle启动起来~~~~~

by law7890 - Oracle - 2006-03-10 16:52:34 阅读(995) 回复(9)

红旗4。1 oracle9i 数据库已装好 请问怎么把服务起来

by yongheng2096 - Linux论坛 - 2005-07-27 17:53:02 阅读(323) 回复(0)

我使用的是linux6.2+oraclei8.1.6每次在启动linux后要手动启动oracle数据库服务,很麻烦。怎样在启动linux时自动启动oracle??!! 还有如果我要新建一个库应该怎样作呀!!??oracle有没有菜单操作呀(其它一些数据库在服务器端都提供菜单操作如informix的dbaccess)!!!??

by hzxrh - Oracle - 2003-10-28 11:04:47 阅读(923) 回复(2)

好久没来cu了也很久没发帖子了 上次注册的名字忘了只好新注册一个用户 以前发了一个关于apapche和resin整合的帖子 现在在发一个关于oracle的帖子 因为最近在学习java 所以要用到oracle 就在linux下装了一下 我用的是redhatlinuxas4up2 这是个安装脚本gunzip ship.gz cpio idmv-ship.cpio create user group groupadd dba groupadd oinstall useradd -g oinstall -G dba -d /home/oracle -s /bin/bash passwd oracle script_wr...

by xchechix - 系统管理 - 2006-05-24 22:30:56 阅读(596) 回复(0)

linuxoracle备份脚本--exp DATAEXPORT文件內容 ############################################################################ oracle_HOME=/u/product/oracle816; export oracle_HOME LD_LIBRARY_PATH=/u/product/oracle816/lib; export LD_LIBRARY_PATH oracle_BASE=/u/product; export oracle_BASE oracle_SID=man; export oracle_SID ORA_NLS33=/u/product/oracle816/ocommon/nls/admin/data; export ORA_NLS33 PATH=$PATH...

备份

by fei16 - 存储文档中心 - 2006-04-11 14:47:56 阅读(721) 回复(0)