gpt4 book ai didi

redis - chef-solo 安装redis最后挂了

转载 作者:可可西里 更新时间:2023-11-01 11:22:32 27 4
gpt4 key购买 nike

chef-solo 在安装 redis 时卡在最后,就好像 chef 在等待某个事件发生一样。这是我不得不用 ctrl+c 杀死它时的输出。

[2013-05-14T15:55:27+00:00] 错误:运行异常处理程序
[2013-05-14T15:55:27+00:00] 错误:异常处理程序完成Chef 客户端失败。更新了 8 个资源
[2013-05-14T15:55:27+00:00] 致命:Stacktrace 转储到/home/ubuntu/cache/chef-stacktrace.out[2013-05-14T15:55:27+00:00] 致命:Chef::Exceptions::MultipleFailures:发生多次故障:
* SystemExit 发生在 chef run: service[redis] (redis::default line 107) had an error: SystemExit: exit
* Chef::Exceptions::Exec 发生在延迟通知中:service[redis] (redis::default line 83) had an error: Chef::Exceptions::Exec:/sbin/start redis returned 1, expected 0

我是 Chef 的新手,无法弄清楚为什么会这样。以前有人注意到这种行为吗?

这是我的 Recipe 文件

package "build-essential" do
action :install
end

user node[:redis][:user] do
action :create
system true
shell "/bin/false"
end

directory node[:redis][:dir] do
owner node[:redis][:user]
group node[:redis][:user]
mode "0755"
action :create
end

directory node[:redis][:data_dir] do
owner node[:redis][:user]
group node[:redis][:user]
mode "0755"
action :create
end

directory node[:redis][:log_dir] do
owner node[:redis][:user]
group node[:redis][:user]
mode "0755"
action :create
end

remote_file "#{Chef::Config[:file_cache_path]}/redis-2.6.10.tar.gz" do
source "http://redis.googlecode.com/files/redis-2.6.10.tar.gz"
action :create_if_missing
end

# Adding 'make test' causes the install to freeze for some reason.
bash "compile_redis_source" do
cwd Chef::Config[:file_cache_path]
code <<-EOH
tar zxf redis-2.6.10.tar.gz
cd redis-2.6.10
make && sudo make install
# to give permissions to the executables that it copied to.
chown -R redis:redis /usr/local/bin
EOH
creates "/usr/local/bin/redis-server"
end

service "redis" do
provider Chef::Provider::Service::Upstart
subscribes :restart, resources(:bash => "compile_redis_source")
supports :restart => true, :start => true, :stop => true
end

template "redis.conf" do
path "#{node[:redis][:dir]}/redis.conf"
source "redis.conf.erb"
owner node[:redis][:user]
group node[:redis][:user]
mode "0644"
notifies :restart, resources(:service => "redis")
end

template "redis.upstart.conf" do
path "/etc/init/redis.conf"
source "redis.upstart.conf.erb"
owner node[:redis][:user]
group node[:redis][:user]
mode "0644"
notifies :restart, resources(:service => "redis")
end

service "redis" do
action [:enable, :start]
end

有 2 个服务“redis”资源语句,这是一个问题吗?或者 Chef 在这种情况下如何锻炼,它在运行时是否合并到一个资源中?

我正在使用 upstart,这里是 redis.upstart.conf.erb 文件。不确定这是否有问题。该文件中语句的顺序重要吗?

#!upstart
description "Redis Server"
emits redis-server

# run when the local FS becomes available
start on local-filesystems
stop on shutdown

setuid redis
setgid redis
expect fork

# Respawn unless redis dies 10 times in 5 seconds
#respawn
#respawn limit 10 5

# start a default instance
instance $NAME
env NAME=redis
#instance $NAME

# run redis as the correct user
#setuid redis
#setgid redis

# run redis with the correct config file for this instance
exec /usr/local/bin/redis-server /etc/redis/redis.conf

respawn
#respawn limit 10 5

最佳答案

我认为 Dmytro 走在正确的道路上,但不完全是。

我看到您在 Chef 中使用 Upstart 作为服务提供者。请检查您的 Upstart 配置的 redis-server 是否有任何 expect 语句。如果你有一个 expect forkexpect daemon 语句在那里,这意味着当启动 redis-server 时,Upstart 将等待 Redis服务分别 fork 一次或两次。如果您在 redis.conf 中设置了 daemonize no,Redis 进程将永远不会 fork ,因此 Upstart 只会在执行 init 脚本时挂起。

关于redis - chef-solo 安装redis最后挂了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16557918/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com