符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
Unix Study--AIX5.3.8安装hacmp52报错
从网站建设到定制行业解决方案,为提供成都做网站、网站制作、成都外贸网站建设服务体系,各种行业企业客户提供网站建设解决方案,助力业务快速发展。成都创新互联公司将不断加快创新步伐,提供优质的建站服务。系统环境:
操作系统:AIX5.3
HACMP: Hacmp5.2
故障现象:
通过 smit installp 安装hacmp时,出现以下故障:
Failed running topsvcsctrl to remove subsystems.
Failed running grpsvcsctrl to remove subsystems.
cleanup: Failed while executing the ./cluster.es.server.utils.unpost_i script.
installp: APPLYING software for:
cluster.es.server.utils 5.2.0.0
Failed running emsvcsctrl to add subsystems.
instal: Failed while executing the ./cluster.es.server.utils.post_i script.
0503-464 installp: The installation has FAILED for the "root" part
of the following filesets:
cluster.es.server.utils 5.2.0.0
installp: Cleaning up software for:
cluster.es.server.utils 5.2.0.0
查看安装脚本:
[root@aix195 inst_root]#cat cluster.es.server.utils.post_i
#!/bin/ksh # IBM_PROLOG_BEGIN_TAG # This is an automatically generated prolog. # # # # Licensed Materials - Property of IBM # # (C) COPYRIGHT International Business Machines Corp. 1997,2003 # 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 # # @(#)30 1.8 src/packages/cluster/es/server/utils/root/cluster.es.server.utils.post_i.sh, pkghacmp, 51pkgha_r520, r5200422a 4/4/02 20:35:25 # # COMPONENT_NAME: pkghacmp # # FUNCTIONS: if_failed # onintr # # ORIGINS: 27 # LPPDIR="/usr/lpp/cluster.es" CLUSTDIR="/usr/es/sbin/cluster" PATH=$PATH:/bin:/usr/bin:/usr/sbin DATTMP=/var/tmp/dattmp$$ if_failed() { status=$1 errmsg=$2 if [ $status -ne 0 ]; then echo Failed $errmsg exit 99 fi } onintr() { exit 5 } ############################################################################### ################################### MAIN ###################################### ############################################################################### trap onintr 1 2 3 ################### create subsystems ############### chservices -a -v topsvcs -n 6178 -p udp > /dev/null 2>&1 if_failed $? "to add service topsvcs to port 6178" chservices -c -v "topsvcs" -n 6178 -p udp > /dev/null 2>&1 if_failed $? "to change service topsvcs to port 6178" chservices -a -v grpsvcs -n 6179 -p udp > /dev/null 2>&1 if_failed $? "to add service grpsvcs to port 6179" chservices -c -v "grpsvcs" -n 6179 -p udp > /dev/null 2>&1 if_failed $? "to change service grpsvcs to port 6179" chservices -a -v emsvcs -n 6180 -p udp > /dev/null 2>&1 if_failed $? "to add service emsvcs to port 6180" /usr/sbin/rsct/bin/topsvcsctrl -a > /dev/null 2>&1 if_failed $? "running topsvcsctrl to add subsystems." /usr/sbin/rsct/bin/grpsvcsctrl -a > /dev/null 2>&1 if_failed $? "running grpsvcsctrl to add subsystems." /usr/sbin/rsct/bin/emsvcsctrl -a > /dev/null 2>&1 if_failed $? "running emsvcsctrl to add subsystems." ##################### End create subsystems ########################## exit 0手工执行脚本:
通过检查emsvcsctrl命令存在,脚本也存在手动执行
[root@aix211 ppc]#find / -name 'cluster.es.server.utils.post_i'
# /usr/sbin/rsct/bin/emsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.post_i
报错-bash-3.00# /usr/sbin/rsct/bin/emsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.post_i0513-071
The emsvcs Subsystem has been added.0513-071 The emaixos Subsystem has been added.
No such file or directory/usr/sbin/rsct/bin/emsvcsctrl[203]: /var/ha/log/em.mkdir:
cannot createemsvcsctrl: 2521-554 Cannot create the Event Management directory "/var/ha/lck/haem".显示不能创建/var/ha/log和/var/ha/lck/haem目录
手动执行:
/usr/sbin/rsct/bin/emsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.post_i
报错:
-bash-3.00# /usr/sbin/rsct/bin/emsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.post_i
0513-071 The emsvcs Subsystem has been added.
0513-071 The emaixos Subsystem has been added.
No such file or directory
/usr/sbin/rsct/bin/emsvcsctrl[203]: /var/ha/log/em.mkdir: cannot create
emsvcsctrl: 2521-554 Cannot create the Event Management directory "/var/ha/lck/haem".
显示不能创建/var/ha/log和/var/ha/lck/haem目录
解决方法:
手工创建目录: -bash-3.00# mkdir -p /var/ha/soc/haem -bash-3.00# /usr/sbin/rsct/bin/emsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.post_i 0513-071 The emsvcs Subsystem has been added. 0513-071 The emaixos Subsystem has been added. [root@aix211 ppc]#/usr/sbin/rsct/bin/topsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.post_i topsvcsctrl: 2523-636 The topsvcs subsystem must be stopped before removing or remaking it. [root@aix211 ppc]#l***c -a |grep top topsvcs topsvcs 331850 active [root@aix211 ppc]#stopsrc -s topsvcs 0513-044 The topsvcs Subsystem was requested to stop. [root@aix211 ppc]#l***c -a |grep top topsvcs topsvcs inoperative [root@aix211 ppc]#/usr/sbin/rsct/bin/topsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.post_i 0513-071 The topsvcs Subsystem has been added. 0513-068 The topsvcs Notify method has been added. [root@aix211 ppc]#l***c -a |grep top topsvcs topsvcs inoperative 重新安装hacmp缺少的文件集(cluster.es.server.utils),OK。错误2:
解决方法:
[root@aix227:/usr/lpp/cluster.es/inst_root]#/usr/sbin/rsct/bin/grpsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.unpost_i grpsvcsctrl: 2520-208 The grpsvcs subsystem must be stopped. [root@aix227:/usr/lpp/cluster.es/inst_root]#l***c -a |grep grp grpsvcs grpsvcs 360696 active grpglsm grpsvcs inoperative [root@aix227:/usr/lpp/cluster.es/inst_root]#stopsrc -s grpsvcs 0513-056 Timeout waiting for command response. If you specified a foreign host, see the /etc/inittab file on the foreign host to verify that the SRC daemon (srcmstr) was started with the -r flag to accept remote requests. [root@aix227:/usr/lpp/cluster.es/inst_root]#l***c -a |grep grp grpsvcs grpsvcs 360696 stopping grpglsm grpsvcs inoperative [root@aix227:/usr/lpp/cluster.es/inst_root]#kill -9 360696 [root@aix227:/usr/lpp/cluster.es/inst_root]#l***c -a |grep grp grpsvcs grpsvcs inoperative grpglsm grpsvcs inoperative 手工执行脚本: [root@aix227:/usr/lpp/cluster.es/inst_root]#/usr/sbin/rsct/bin/grpsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.unpost_i 0513-071 The grpsvcs Subsystem has been added. 0513-071 The grpglsm Subsystem has been added. [root@aix227:/usr/lpp/cluster.es/inst_root]#/usr/sbin/rsct/bin/grpsvcsctrl -a /usr/lpp/cluster.es/inst_root/cluster.es.server.utils.post_i 0513-071 The grpsvcs Subsystem has been added. 0513-071 The grpglsm Subsystem has been added. 用smit installp重新安装:Cluster.es.server.utils软件包即可!原因:
有可能是在设置PATH 环境变量时,导致root用户无法找到emsvcsctrl 、grpsvcsctl等命令,来执行脚本!
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。