在10g中,如果使用asm存储,且不使用clusterware,那么在安装asm的时候,就会要求启动css服务,启动css服务是以root运行运行$ORACLE_HOME/bin下的localconfig add。然后,css服务就开始运行了,你也可以建立asm实例,在asm上建单实例的数据库了。
但是,当我们打patchset的时候,需要停asm,停数据库,另外,还需要停css。我们可以在root下运行init.cssd start/stop即可。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
[root@testdb ~]# ps -ef |grep css root 6560 1 0 15:30 ? 00:00:00 /bin/su -l oracle10g -c sh -c 'cd /u01/ora10g/app/oracle/product/10.2.0/db_1/log/testdb/cssd; ulimit -c unlimited; exec /u01/ora10g/app/oracle/product/10.2.0/db_1/bin/ocssd ' 501 7334 6560 0 15:31 ? 00:00:00 /u01/ora10g/app/oracle/product/10.2.0/db_1/bin/ocssd.bin root 7528 7437 0 15:45 pts/3 00:00:00 grep css [root@testdb ~]# [root@testdb ~]# [root@testdb ~]# [root@testdb ~]# cd /etc [root@testdb etc]# cd init.d [root@testdb init.d]# ls acpid cups halt kudzu network rawdevices saslauthd wdaemon anacron cups-config-daemon hidd lm_sensors NetworkManager rdisc sendmail winbind arptables_jf dc_client init.cssd lvm2-monitor nfs rdisc.condrestart single wpa_supplicant atd dc_server ipmi mdmonitor nfslock readahead smartd xfs auditd diskdump iptables mdmpd nscd readahead_early spamassassin xinetd autofs dund irda messagebus ntpd rhnsd sshd ypbind bluetooth firstboot irqbalance microcode_ctl pand rpcgssd syslog yum capi functions isdn netdump pcmcia rpcidmapd tog-pegasus cpuspeed gpm keytable netfs portmap rpcsvcgssd vncserver crond haldaemon killall netplugd psacct rwhod vsftpd [root@testdb init.d]# ./init.cssd stop Stopping CSSD. Shutting down CSS daemon. Shutdown request successfully issued. Shutdown has begun. The daemons should exit soon. [root@testdb init.d]# [root@testdb init.d]# [root@testdb init.d]# ps -ef |grep css root 7564 1 0 15:45 ? 00:00:00 /bin/sh /etc/init.d/init.cssd run root 7614 7437 0 15:45 pts/3 00:00:00 grep css [root@testdb init.d]# ./init.cssd start Startup will be queued to init within 90 seconds. [root@testdb init.d]# [root@testdb init.d]# [root@testdb init.d]# [root@testdb init.d]# ps -ef |grep css root 7564 1 0 15:45 ? 00:00:00 /bin/su -l oracle10g -c sh -c 'cd /u01/ora10g/app/oracle/product/10.2.0/db_1/log/testdb/cssd; ulimit -c unlimited; exec /u01/ora10g/app/oracle/product/10.2.0/db_1/bin/ocssd ' 501 7856 7564 0 15:49 ? 00:00:00 /u01/ora10g/app/oracle/product/10.2.0/db_1/bin/ocssd.bin root 7898 7437 0 15:49 pts/3 00:00:00 grep css [root@testdb init.d]# |
注:不同平台的init.cssd路径可能不同,linux的在/etc/init.d下。
参考:Doc ID 311647.1