- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 chef 配置一台 centos 机器,除了
execute "chkconfig add tomcat" do
command "chkconfig --add tomcat"
end
execute "chkconfig tomcat level" do
command "chkconfig --level 234 tomcat on"
end
这会带来这个错误..
Mixlib::ShellOut::ShellCommandFailed
------------------------------------
Expected process to exit with [0], but received '1'
---- Begin output of chkconfig --add tomcat ----
STDOUT:
STDERR: error reading information on service tomcat: No such file or directory
---- End output of sudo chkconfig --add tomcat ----
Ran chkconfig --add tomcat returned 1
最佳答案
您喜欢使用 chkconfig
吗?有一个 service应为您处理此问题的资源。
Chef::Provider::Service::Init::Redhat service The provider that is used with the Red Hat and CentOS platforms.
关于tomcat - 使用 chef 执行 "chkconfig --add tomcat"时出错?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21941251/
程序员们,你们好。我有个问题。请帮忙。我正在创建一个服务,它必须在加载 Linux 时自动加载。因此,我将脚本复制到目录/etc/rc.d/init.d 或/etc/init.d/中。但是当我执行命令
1.命令简介 chkconfig 命令用于更新和查询系统服务的运行等级信息。它可查询操作系统在每一个运行等级中会自动执行哪些系统服务,包括各类常驻服务,比如 httpd、sshd、mysqld 等
安装命令: sudo apt-get install chkconfig (可以用sysv-rc-conf代替) 功能说明:检查、设定系统的各种服务。 语法:chkconfig [--add
CentOS 使用 chkconfig 命令将服务添加到启动例程,但我如何添加服务并将参数传递给该服务? 更准确地说,我在 CentoOS 6.5 服务器上设置了 Sphinx 搜索引擎,文档希望我这
如何备份当前的chkconfig配置 chkconfig --list 列出当前的服务配置,以及何时(运行级别)服务设置为启动。 我需要备份 chkconfig 配置并在具有相同运行级别的另一台机器上
在我的 CentOS 机器上,我写了一个脚本来告诉我是否安装了服务。这是脚本 count=$(chkconfig --list | grep -c "$1") if [ $count = 0 ]; t
我是 linux 平台的新手。我需要建立 mongodb 作为启动服务。在 Fedora 中,我能够运行以下命令并成功完成任务。 chkconfig —add mongodb chkconfig mo
我使用 .rpm。我为 glassfish 制作了 rpm 我的模板文件是 Summary: GlassFish Name: redsky-glassfish Version: @VERSION@ R
我的 playbook 中有一个像这样的 ansible 任务要针对 centos 服务器运行: - name: Enable services for automatic start
我正在尝试将 redis 添加到我的 CentOS 虚拟机的启动中,但 chkconfig 似乎没有添加它。我对其他几个初始化脚本执行了相同的过程,并且它们添加得很好。任何帮助告诉我我做错了什么都会很
我运行的是 Ubuntu 13.10,而且我对 Linux 还是很陌生。我试过了: $ sudo apt-get install chkconfig Package chkconfig is not
我试图了解如何在 Linux 中配置应用程序启动和关闭。有人可以解释一下使用 update-rc 和 chkconfig 有什么区别吗?这是做完全相同事情的两种方式吗? 最佳答案 chkconfig
我正在使用 chef 配置一台 centos 机器,除了 execute "chkconfig add tomcat" do command "chkconfig --add tomcat" en
按照以下链接中的 Sonar 设置说明进行操作。但执行 chkconfig 命令失败。它阻止我在 centos7 中启动 sonarqube 作为服务。 http://docs.sonarqube.o
我制作了一个启动脚本(即 myserviced)并将其放入/etc/init.d/ 我跑了 chkconfig --add myserviced 我可以启动/停止/重新启动服务,只需使用: servi
我正在尝试写一个 init.d第一次启动脚本supervisord过程。主管是流程 Controller /经理,如 runit , upstart , 或 systemd .如果系统重新启动,我希望
我已经转换了Debian包安装到CentOS RPM使用 alian .我在尝试安装时遇到以下错误。 错误: file /etc/init.d from install of conflicts w
我是一名优秀的程序员,十分优秀!