问题标签 [puppetlabs-apache]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
unix - Does Puppet Master-Client certificate ever expire?
During initial configuration of the Puppet agent, the agent obtains a security certificate signed by an authority recognized by the master -- most often the master itself -- with which it will subsequently identify itself to the master. Does this certificate ever expire or require an update?
ssl - 错误:无法请求证书 - Puppet 版本问题
之前一直运行良好,现在我尝试执行此操作时突然出现此错误
. 当我尝试时yum upgrade puppet
,我无事可做。这个错误有什么帮助吗?
puppet - 在 puppet 中使用多个 vhost 模板
我想在我的节点清单中使用我的 apache 模块中的多个 vhost 模板,但到目前为止没有任何运气。
我的 apache 模块中有一个虚拟主机模板,看起来像这样。这是我的 apache::vhost 模板:
当我在我的 nodes.pp 清单中定义该模板时,它工作得很好:
但是,当我尝试在我的 nodes.pp 清单中使用另一个具有不同设置的虚拟主机模板时,我收到了一个错误。这是我无法在我的 nodes.pp 清单中使用的 apache::vhost_admin 模板:
当我尝试在我的 nodes.pp 文件中定义 apache::vhost_admin 时:
当我在 nodes.pp 清单中定义 apache::vhost_admin 模板时,出现以下错误:
我究竟做错了什么?如何在 puppet 中定义多个虚拟主机定义,每个都有不同的设置?
puppet - Puppet 无效资源
我对 DevOps 工具非常陌生,并且开始学习 Puppet。我在这个链接上找到了这个例子很好地开始我的目的:使用 Puppet 配置 Appache 服务器:http: //blog.akquinet.de/2011/11/23/managing-an-apache-server-with-puppet/ 但是在运行文章中介绍的代码时,出现以下错误
错误:评估错误:评估资源语句时出错,节点 learning.puppetlabs.vm 上 /root/kmlunch.pp:17:1 的资源类型无效 apache::vhost::proxy_http
也许这是一个明显的错误,但我不知道如何解决它。你能帮忙吗?
谢谢
ubuntu - 在 ubuntu 中没有 root 访问权限的 puppet 应用命令
我在 ubuntu 中安装了 puppet 客户端,我试图在没有 root 访问权限的情况下在 hudson 发布过程之后执行我的 nexus 工件 puppet 和部署文件。
如何在没有 root 访问权限的情况下在 ubuntu 中执行“puppet apply”命令?
ubuntu - 如何将两个虚拟机主机添加到工头木偶大师
我最近在 ubuntu 14.04 LTS 中安装了工头木偶,我在虚拟盒中运行。我已将其 FQDN 配置为127.0.1.1 ubuntu.localhost.com ubuntu
.
我成功地在里面安装了工头木偶。所以我们在这里运行 puppet master,对于 puppet agent,我们使用命令运行一次puppet agent --test
,所以基本上 puppet agent 和 puppet master 在同一台机器上。puppet master 在本地连接到工头,工头在https://ubuntu.localhost.com本地运行。
我基本上在运行windows7,并在其中安装了virtual box,然后我正在访问ubuntu。所以,现在我想向我的 puppet master 添加一个新主机,并且我还想通过 foreman 访问它。
为此,我使用 ubuntu 14.04 LTS 创建了新的虚拟机。如何将此新 VM 添加到我的 puppet master 并使其充当 puppet 代理?我已将此新 VM 的 FQDN 设置为127.0.1.2 ubuntuLight.localhost.com ubuntuLight
.
apache - 使用 Puppet 安装后 Apache 无法启动
我已经通过 puppetlabs/apache 安装了 Apache,但它不会启动。Address already in use: AH00072: make_sock: could not bind to address
无论使用什么端口,我都会抛出错误。netstat -lntp
使用该端口不显示任何内容。我的系统是 CentOS 7,我正在使用来自centos-sclo-rh
repo 的包。以下是我安装的与此相关的软件包:
这是我的 Puppet 清单。任何帮助将不胜感激。
apache - Puppet 和 Apache:${name} 给出 'main' 而不是类名
我正在尝试使用该puppetlabs/apache
模块配置一些 Apache 虚拟主机。我的问题是${name}
变量。我希望 DocumentRoot 设置为/var/www/atoms.one
,但它设置为/var/www/main
.
我究竟做错了什么?
我的清单:
apache - puppetlabs/apache:无效关系:文件[/etc/httpd/conf/httpd.conf]
几个月以来,我刚刚提取了 puppetlabs-apache git 存储库,当我运行 puppet 时,我收到了以下消息:
这是我的网站清单文件:
这以前总是有效的,但每次都知道失败。哪个 puppet 版本(3 或 4)或 Linux 操作系统(Centos、Ubuntu 或 Debian)都没有关系。
我错过了什么吗?
亲切的问候,维尔纳
puppet - 如何在 Puppet 中安装和运行脚本
我是 Puppet 的新手。我正在尝试安装一个 shell 脚本并使用 Puppet 执行它。运行后的 shell 脚本会创建另一个 conf 文件并放置在特定位置 /usr/local/conf/app.conf 中。如何编写木偶代码来执行此脚本,然后获取输出文件并将其 scp 到另一台服务器(在我的情况下是网络服务器)。有人可以帮忙吗。