我正在尝试在 ubuntu 12.04.5 64 位上安装 chef (chef-server_11.0.4-1.ubuntu.12.04)。
安装后,当我运行“chef-server-ctl reconfigure”时出现以下错误。
让我知道如何安装它。
[2014-12-20T14:16:10+05:30] ERROR: Running exception handlers
[2014-12-20T14:16:10+05:30] ERROR: Exception handlers complete
Chef Client failed. 2 resources updated
[2014-12-20T14:16:10+05:30] FATAL: Stacktrace dumped to /opt/chef-server/embedded/cookbooks/cache/chef-stacktrace.out
[2014-12-20T14:16:10+05:30] FATAL: Mixlib::ShellOut::ShellCommandFailed: execute[/opt/chef-server/embedded/bin/chpst -u chef_server -U chef_server /opt/chef-server/embedded/bin/rabbitmqctl wait /var/opt/chef-server/rabbitmq/db/[email protected]] (chef-server::rabbitmq line 80) had an error: Mixlib::ShellOut::ShellCommandFailed: Expected process to exit with [0], but received '2'
---- Begin output of /opt/chef-server/embedded/bin/chpst -u chef_server -U chef_server /opt/chef-server/embedded/bin/rabbitmqctl wait /var/opt/chef-server/rabbitmq/db/[email protected] ----
STDOUT: Waiting for rabbit@localhost ...
pid is 6031 ...
STDERR: Error: process_not_running
---- End output of /opt/chef-server/embedded/bin/chpst -u chef_server -U chef_server /opt/chef-server/embedded/bin/rabbitmqctl wait /var/opt/chef-server/rabbitmq/db/[email protected] ----
Ran /opt/chef-server/embedded/bin/chpst -u chef_server -U chef_server /opt/chef-server/embedded/bin/rabbitmqctl wait /var/opt/chef-server/rabbitmq/db/[email protected] returned 2
重启 Rabbitmq 服务器后更新错误
> [2014-12-23T09:55:15+05:30] ERROR: Running exception handlers
> [2014-12-23T09:55:15+05:30] ERROR: Exception handlers complete Chef
> Client failed. 8 resources updated [2014-12-23T09:55:15+05:30] FATAL:
> Stacktrace dumped to
> /opt/chef-server/embedded/cookbooks/cache/chef-stacktrace.out
> [2014-12-23T09:55:15+05:30] FATAL:
> Mixlib::ShellOut::ShellCommandFailed: execute[verify-system-status]
> (chef-server::bootstrap line 21) had an error:
> Mixlib::ShellOut::ShellCommandFailed: Expected process to exit with
> [0], but received '7'
> ---- Begin output of curl -sf http://localhost:8000/_status ---- STDOUT: STDERR:
> ---- End output of curl -sf http://localhost:8000/_status ---- Ran curl -sf http://localhost:8000/_status returned 7
Ubuntu 上的 chef 安装存在一个已知问题。在重新配置期间,它尝试启动并连接到 rabbitmq,但是 rabbitmq 服务器已经在运行,所以启动失败。
可能发生的另一件事是 /etc/hosts 文件中没有 localhost 条目。
最有可能的是已经运行的rabbitmq,在这种情况下试试这个:
如果这不起作用,请检查以确保 /etc/hosts 中存在以下内容:
nginx 可能没有启动。这些的输出是什么:
chef-server-ctl status lsof -i:8000 chef-server-ctl tail
我不记得Ubuntu是否带有lsof,所以你可能需要安装它
apt-get install lsof -y
我为这个问题做了很多尝试。我做了很多谷歌搜索。最后我得到了1个解决方案。
RabbitMQ 服务在
5672
端口上运行。但是这个端口被其他一些服务使用。5672
因此,我使用以下命令运行检查是否有任何服务在端口上运行:我使用以下命令终止了具有端口 5672 的服务:
然后我
sudo chef-server-ctl reconfigure
再次运行它,它按预期工作。