|
原帖由 shahand 于 2008-12-27 11:46 发表 ![]()
1 udp的参数设置:
# no -p -o udp_sendspace=65536
# no -p -o udp_recvspace=65536
# tail -20 /etc/tunables/nextboot
2. 另外你的操作:
Connected.
SQL>
SQL> startup
ORA-01081: cannot start already-running ORACLE - shut it down first
这地方有问题,数据库没关掉。
还有你的cluster_inconnect ,参数、以及网络状态,是不是有问题?
1 udp的参数设置:
# no -p -o udp_sendspace=65536
# no -p -o udp_recvspace=65536
[SUN say:]
# no -p -o udp_sendspace=65536
Setting udp_sendspace to 65536
Setting udp_sendspace to 65536 in nextboot file
Change to tunable udp_sendspace, will only be effective for future connections
#
# no -p -o udp_recvspace=65536
Setting udp_recvspace to 65536
Setting udp_recvspace to 65536 in nextboot file
Change to tunable udp_recvspace, will only be effective for future connections
#
[END]
# tail -20 /etc/tunables/nextboot
[SUN Say:]
# tail -20 /etc/tunables/nextboot
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# bos530 src/bos/usr/sbin/perf/tune/nextboot 1.1
#
# Licensed Materials - Property of IBM
#
# (C) COPYRIGHT International Business Machines Corp. 2002
# All Rights Reserved
#
# US Government Users Restricted Rights - Use, duplication or
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
#
# IBM_PROLOG_END_TAG
vmo:
no:
udp_recvspace = "65536"
udp_sendspace = "65536"
#
[END]
2. 另外你的操作:
Connected.
SQL>
SQL> startup
ORA-01081: cannot start already-running ORACLE - shut it down first
这地方有问题,数据库没关掉。
还有你的cluster_inconnect ,参数、以及网络状态,是不是有问题?
[SUN Say:]
在init.ora中添加
sabq1.cluster_interconnects='172.168.1.48'
sabq2.cluster_interconnects='172.168.1.71'
数据库是关闭的,请看:
[sabq1 racle] /oracle/app/oracle/product/9.2.0/dbs> sqlplus "/ as sysdba"
SQL*Plus: Release 9.2.0.8.0 - Production on Sat Dec 27 12:53:47 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected.
SQL> select status from v$instance;
select status from v$instance
*
ERROR at line 1:
ORA-01012: not logged on
SQL> startup pfile='init.ora' nomount;
ORA-01081: cannot start already-running ORACLE - shut it down first
SQL>
SQL> shutdown immediate
ORA-24324: service handle not initialized
ORA-24323: value not allowed
ORA-00603: ORACLE server session terminated by fatal error
SQL>
SQL> startup pfile='init.ora' nomount
ORA-01031: insufficient privileges
SQL> conn / as sysdba
Connected to an idle instance.
SQL> select status from v$instance;
select status from v$instance
*
ERROR at line 1:
ORA-01012: not logged on
SQL>
SQL>
网络是可以互相ping通的。
[END]
您看还可能是哪里的问题呢?需要检查哪些内容呢?感谢!! |
|