在我的vagrant-berkshelf 6.5框中使用CentOS,我尝试指定7作为Tomcat的版本来安装:
"tomcat" => {
"base_version" => "7"
}但是,当我试图运行vagrant provision时,遇到了一个错误:
[2014-03-21T18:23:50+00:00] ERROR: package[tomcat7] (tomcat::default line 45)
had an error: Chef::Exceptions::Package: No version specified,
and no candidate version available for tomcat7这个Opscode“添加对Tomcat7的支持”错误标记为“固定”,但它只显示为Ubuntu12.04测试。我不确定这是否意味着(a)它没有经过CentOS测试,或者(b)它从未被CentOS破坏过。
我怎么才能用tomcat7在我的流浪盒和厨师?
发布于 2014-03-23 12:30:39
tomcat7似乎还没有在centos6.5的标准/epel存储库中。
[root@secure36 rfridman]# cat /etc/issue
CentOS release 6.5 (Final)
[root@secure36 rfridman]# yum search tomcat
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
* base: mirror.atlanticmetro.net
* epel: mirror.symnds.com
* extras: mirror.es.its.nyu.edu
* updates: mirror.cogentco.com
==================================================================== N/S Matched: tomcat =====================================================================
tomcatjss.noarch : JSSE implementation using JSS for Tomcat
apache-tomcat-apis.noarch : Tomcat Servlet and JSP APIs
jakarta-commons-collections-tomcat5.noarch : Jakarta Commons Collection dependency for Tomcat5
jakarta-commons-dbcp-tomcat5.noarch : DBCP dependency for Tomcat5
jakarta-commons-pool-tomcat5.x86_64 : Pool dependency for Tomcat5
jglobus-ssl-proxies-tomcat.noarch : Globus Java - SSL and proxy certificate support for Tomcat
tomcat-admin-webapps.noarch : The host-manager and manager web applications for Apache Tomcat
tomcat-docs-webapp.noarch : The docs web application for Apache Tomcat
tomcat-javadoc.noarch : Javadoc generated documentation for Apache Tomcat
tomcat-jsp-2.2-api.noarch : Apache Tomcat JSP API implementation classes
tomcat-jsvc.noarch : Apache jsvc wrapper for Apache Tomcat as separate service
tomcat-lib.noarch : Libraries needed to run the Tomcat Web container
tomcat-native.x86_64 : Tomcat native library
tomcat-servlet-3.0-api.noarch : Apache Tomcat Servlet API implementation classes
tomcat-webapps.noarch : The ROOT and examples web applications for Apache Tomcat
tomcat6.noarch : Apache Servlet/JSP Engine, RI for Servlet 2.5/JSP 2.1 API
tomcat6-admin-webapps.noarch : The host-manager and manager web applications for Apache Tomcat
tomcat6-docs-webapp.noarch : The docs web application for Apache Tomcat
tomcat6-javadoc.noarch : Javadoc generated documentation for Apache Tomcat
tomcat6-jsp-2.1-api.noarch : Apache Tomcat JSP API implementation classes
tomcat6-lib.noarch : Libraries needed to run the Tomcat Web container
tomcat6-servlet-2.5-api.noarch : Apache Tomcat Servlet API implementation classes
tomcat6-webapps.noarch : The ROOT and examples web applications for Apache Tomcat
glite-security-trustmanager-tomcat6.noarch : Java trustmanager interface supporting a GSI grid name space
tomcat.noarch : Apache Servlet/JSP Engine, RI for Servlet 3.0/JSP 2.2 API
tomcat-el-2.2-api.noarch : Expression Language v1.0 API
tomcat6-el-2.1-api.noarch : Expression Language v1.0 API您应该尝试从源代码编译tomcat7,或者尝试找到包含tomcat7的存储库,并将其添加到您的食谱配置中。
发布于 2014-06-13 05:40:08
有两个问题:
请参阅:https://github.com/opscode-cookbooks/tomcat/pull/34
我的临时解决方案是编写一个包装厨师配方,通过包管理器安装EPEL回购和错误修复tomcat7包。类似于:
# BERKSHELF
cookbook "yum", "~> 3.2.0"
cookbook "yum-epel", "~> 0.3.6"
# CHEF
override['yum']['epel-testing']['enabled'] = true
package 'tomcat'发布于 2014-04-03 15:45:47
七号猫在你展示的名单上。
yum info tomcat
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: centos.mirror.ndchost.com
* epel: mirror.vcu.edu
* extras: centos.sonn.com
* updates: mirror.atlanticmetro.net
Available Packages
Name : tomcat
Arch : noarch
Version : 7.0.33
Release : 3.el6
Size : 86 k
Repo : epel
Summary : Apache Servlet/JSP Engine, RI for Servlet 3.0/JSP 2.2 API
URL : http://tomcat.apache.org/
License : ASL 2.0
Description : Tomcat is the servlet container that is used in the official Reference
: Implementation for the Java Servlet and JavaServer Pages technologies.
: The Java Servlet and JavaServer Pages specifications are developed by
: Sun under the Java Community Process.
:
: Tomcat is developed in an open and participatory environment and
: released under the Apache Software License version 2.0. Tomcat is intended
: to be a collaboration of the best-of-breed developers from around the world.这个问题出现在“猫猫食谱”上。它正在寻找一个tomcat7包。
https://stackoverflow.com/questions/22566773
复制相似问题