オンラインラヴィットmq起動失敗緊急修復

5093 ワード

出勤するとサービスが使えないと言って、急いで解決してからサービスを再開してみたら、mqが起動していないことが分かりました。
[root@localhost rabbit@localhost]# service rabbitmq-server start
Starting rabbitmq-server: SUCCESS
rabbitmq-server.
そして管理ページにアクセスします。
http://127.0.0.1:15672/
アクセスできなくて、心理的に慌てました。いいえ、何回試してもポートの占有を確認していません。
[root@localhost ~]# netstat -anp |grep 4369
tcp        0      0 0.0.0.0:4369                0.0.0.0:*                   LISTEN      5582/epmd           
tcp        0      0 :::4369                     :::*                        LISTEN      5582/epmd   
実は上のは正常です。サービス開始スクリプトを表示
vi /etc/init.d/rabbitmq-server
ラヴィットmq-server日志
tail /var/log/rabbitmq/startup_log
{"init terminating in do_boot",{error,{cannot_delete_plugins_expand_dir,["/var/lib/rabbitmq/mnesia/rabbit@localhost-plugins-expand",{cannot_delete,"/var/lib/rabbitmq/mnesia/rabbit@localhost-plugins-expand/rabbitmq_web_dispatch-3.5.0/ebin/rabbit_webmachine.beam",eacces}]}}}
最後にプラグインディレクトリのパーミッションが見つかりました。持ち主を変更します。
chown -R rabbitmq:rabbitmq /var/lib/rabbitmq/mnesia/rabbit@localhost-plugins-expand/
【エラー】1、むやみにリセットしない、またはrabitmqctl reetで、キューをリセットし、プラグインを無効にする、/etc/rabitmq/enabled_plugins 3、sudo/usr/sbin/rabitmq-serverエラーpid権限が足りません。
【まとめ】後代の人の採坑を防ぐ:1、防火壁を検査する
service iptables status
2、ラヴィットmqを検査する
[root@localhost rabbit@localhost]# service rabbitmq-server status
Status of node rabbit@localhost ...
Error: unable to connect to node rabbit@localhost: nodedown

DIAGNOSTICS
===========

attempted to contact: [rabbit@localhost]

rabbit@localhost:
  * connected to epmd (port 4369) on localhost
  * epmd reports: node 'rabbit' not running at all
                  no other nodes on localhost
  * suggestion: start the node

current node details:
- node name: 'rabbitmq-cli-7227@localhost'
- home dir: /var/lib/rabbitmq
- cookie hash: upI9R3WzVaK8x5qUau1aHg==
3、ロカホストが解析できるかどうか
ping localhost
vi /etc/hosts  //  host  dns  
4、ラビットMQ日記
    
tail /var/log/rabbitmq/startup_log
5、プラグインディレクトリのパーミッション
ll /var/lib/rabbitmq/mnesia/
chown -R rabbitmq:rabbitmq /var/lib/rabbitmq/mnesia/rabbit@localhost-plugins-expand/