0

我有一个运行起搏器集群的 RHEL6.6 操作系统(请参阅下面的信息)。

在我启动 pcsd 之后

$ service pcsd status
pcsd (pid  28487) is running...

$ ps -ef | grep 28487
root      6911 28713  0 20:19 pts/1    00:00:00 grep 28487
root     28487     1  0 18:09 pts/0    00:00:01 /usr/bin/ruby -I/usr/lib/pcsd /usr/lib/pcsd/ssl.rb

并使用 hacluster 用户对节点进行身份验证。

$ pcs cluster auth eastapp1 eastapp2
eastapp1: Already authorized
eastapp2: Already authorized

但是当我尝试访问 pcsd GUI 网页时,我得到了这个:https://IP_cluster_node:2224/login

PCSD GUI 被禁用。关于如何启用此功能的任何建议?


集群信息:

$ pcs status
Cluster name: east
Last updated: Wed Jan 13 20:14:29 2016
Last change: Wed Jan 13 19:53:21 2016
Stack: cman
Current DC: eastapp1 - partition with quorum
Version: 1.1.11-97629de
2 Nodes configured
2 Resources configured


Online: [ eastapp1 eastapp2 ]

Full list of resources:

Resource Group: mastera_sg
    mastera_vip        (ocf::heartbeat:IPaddr2):       Started eastapp1 
    aerver  (ocf::heartbeat:aac):   Started eastapp1 

$ rpm -qa|grep -i pacemaker
pacemaker-cluster-libs-1.1.12-4.el6.x86_64
pacemaker-libs-1.1.12-4.el6.x86_64
pacemaker-1.1.12-4.el6.x86_64
pacemaker-cli-1.1.12-4.el6.x86_64

$ cat /etc/redhat-release 
Red Hat Enterprise Linux Server release 6.6 (Santiago)
4

1 回答 1

2

因为 pcsd 默认禁用 web gui。

如果你需要启用它,你可以这样做:

停止 pcsd 服务

cd /usr/lib/pcsd

将文件 pcsd.rb.disable-gui 重命名为 pcsd.rb 覆盖旧文件

并重新启动 pcsd 服务

由常量控制的 pcsd web guiDISABLE_GUI

在文件 pcsd.rb#68 中定义的常量(在我的版本中)

于 2016-01-20T06:07:45.817 回答