Chef不会在Centos中安装apache2

时间:2013-02-01 11:23:38

标签: php apache2 chef vagrant yum

我试图通过在Centos框中创建LAMP堆栈来弄清楚Chef和Vagrant是如何工作的。 使用Chef进行配置时,Apache2安装会出现以下错误:

[2013-02-01T11:00:13+00:00] INFO: package[apache2] installing httpd-2.2.15-15.el6.centos.1 from base repository

================================================================================

Error executing action `install` on resource 'package[apache2]'

================================================================================


Chef::Exceptions::Exec

----------------------

 returned 1, expected 0


Resource Declaration:

---------------------

# In /tmp/vagrant-chef-1/chef-solo-1/cookbooks/apache2/recipes/default.rb

 20: package "apache2" do
 21:   package_name node['apache']['package']
 22: end
 23: 

Compiled Resource:

------------------

# Declared in /tmp/vagrant-chef-1/chef-solo-1/cookbooks/apache2/recipes/default.rb:20:in `from_file'

package("apache2") do
  package_name "httpd"
  retries 0
  recipe_name "default"
  cookbook_name :apache2
  version "2.2.15-15.el6.centos.1"
  action :install
  retry_delay 2
end

[2013-02-01T11:00:56+00:00] ERROR: Running exception handlers
[2013-02-01T11:00:56+00:00] ERROR: Exception handlers complete
[2013-02-01T11:00:56+00:00] FATAL: Stacktrace dumped to /tmp/vagrant-chef-1/chef-stacktrace.out
[2013-02-01T11:00:56+00:00] FATAL: Chef::Exceptions::Exec: package[apache2] (apache2::default line 20) had an error: Chef::Exceptions::Exec:  returned 1, expected 0
Chef never successfully completed! Any errors should be visible in the
output above. Please fix your recipes so that they properly complete.

我注释掉了Apache2配方,并试图只安装PHP,但这会产生同样的错误。然而,MYSQL配方没有问题,安装得很好

基础框是用Veewee CentOS-6.3-i386-minimal创建的,这是我使用的配方:

include_recipe "yum"
include_recipe "apache2"
include_recipe "apache2::mod_php5"
include_recipe "apache2::mod_rewrite"
include_recipe "php"
include_recipe "php::module_mysql"
include_recipe "mysql::server"

所有使用过的食谱都来自opscode-cookbooks。 我不知道如何解决这个问题,如果没有找到软件包,或者在de cookbook中有一些错误的安装代码,这是一个错误吗?

以前安装的Debian包装盒上有相同的食谱(Apt而不是Yum),没有问题。

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

感谢@DracoAter提供拯救生命的建议。

Ssh`d进入vagrant并试图用yum手动安装包。 这给出了以下错误:

error: unpacking of archive failed on file /var/www/icons/poweredby.png;510bc31b: cpio: symlink

我在Vagrantfile

中有这个
config.vm.share_folder "www", "/var/www", "./www"

显然阻止从yum访问该目录。因此,删除该行会修复httpd

的安装