- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先这样做:
systemctl stop mosquitto
update-rc.d mosquitto remove
rm /etc/init.d/mosquitto
单元文件如下:
[Unit]
Description=MQTT v3.1 message broker
After=network.target
Requires=network.target
[Service]
Type=simple
ExecStart=/usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf
Restart=always
[Install]
WantedBy=multi-user.target
结果:
sudo systemctl status mosquitto -l
是:
● mosquitto.service - MQTT v3.1 message broker
Loaded: loaded (/etc/systemd/system/mosquitto.service; enabled)
Active: failed (Result: start-limit) since Sun 2017-01-01 19:44:03 GMT; 3min 23s ago
Process: 683 ExecStart=/usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf (code=exited, status=1/FAILURE)
Main PID: 683 (code=exited, status=1/FAILURE)
Jan 01 19:44:03 raspberrypi systemd[1]: Unit mosquitto.service entered failed state.
Jan 01 19:44:03 raspberrypi systemd[1]: mosquitto.service holdoff time over, scheduling restart.
Jan 01 19:44:03 raspberrypi systemd[1]: Stopping MQTT v3.1 message broker...
Jan 01 19:44:03 raspberrypi systemd[1]: Starting MQTT v3.1 message broker...
Jan 01 19:44:03 raspberrypi systemd[1]: mosquitto.service start request repeated too quickly, refusing to start.
Jan 01 19:44:03 raspberrypi systemd[1]: Failed to start MQTT v3.1 message broker.
Jan 01 19:44:03 raspberrypi systemd[1]: Unit mosquitto.service entered failed state.
我进行了大量的谷歌搜索,并尝试了一些类似的单元文件,但似乎没有任何效果。
手动运行该命令 (/usr/sbin/mosquitto -c/etc/mosquitto/mosquitto.conf
) 给出:
Error: Unable to open log file /var/log/mosquitto/mosquitto.log for writing.
Error found at /etc/mosquitto/mosquitto.conf:11.
Error: Unable to open configuration file.
奇怪的是,运行 /usr/sbin/mosquitto
,即不指定 .conf 文件,运行正常。/etc/mosquitto/mosquitto.conf 是默认的 .conf 文件,所以即使我没有指定它也应该使用它......
最佳答案
如果出现问题,一个好的开始通常是查看日志文件(假设所有命令都以 root 身份运行):
journalctl -u mosquitto
现在您的特定错误(错误:无法打开日志文件/var/log/mosquitto/mosquitto.log 进行写入。
)暗示您遇到了权限问题。
mosquitto
守护程序的用户。注意:如果您在错误的用户下运行文件创建过程(仅一次就足够 - 例如在测试期间),则很容易获得生成文件的错误权限
关于raspberry-pi - 无法使用 systemctl 在 raspbian jessie 上启动 mosquitto,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41418243/
我想查看 systemctl 命令的输出。例如: systemctl restart systemd-networkd 将显示输出 systemctl status systemd-networkd
Dockerfile FROM centos:7 ENV container docker VOLUME ["/sys/fs/cgroup"] RUN yum -y update RUN yum in
我有两个服务 A 和 B,其中 A 依赖于 B,这意味着 A 需要 B 提供的服务,所以在 A 的服务单元中我将 After 和 Requires 设置为 B After=B.service Requ
http://refspecs.linuxfoundation.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generic.html#INISCRPTACT 根据这
我有一个运行 Ubuntu 16.04.1x64 的 DO droplet,我正在尝试运行 IPFS作为系统服务。我已经按照说明创建了一个用户“connor”并安装了 IPFS here .我将服务存
“systemctl start nginx”和systemctl start nginx.service有什么区别?我在不同的教程中看到它们。还有其他一些具有*.service。 我想知道它们是一样
我们正在尝试让 autossh 在 Ubuntu 16.04.2 的启动时连接到远程服务器。所以我们使用 systemctl 来完成这项工作。脚本如下: [Unit] Description=Keep
这是我的配置文件: [Service] LimitNOFILE=65535 LimitNPROC=65535 TasksMax=infinity Type=forking PIDFile=/data/
我有一个配置 jenkins 的 ansible playbook,这个 playbook 作为 cloud-init-script 的一部分运行。 但是在 Jenkins 重启期间它失败了。谁能告诉
我正在尝试使用 systemctl 配置 Tomcat 8.5.37 以在 Ubuntu 16.04 上将服务器作为守护进程启动。 为此,我在/etc/systemd/system/tomcat8.s
我会在我的 CentOS 服务器中禁用 Ctrl-Alt-Delete,所以我尝试了: systemctl mask ctrl-alt-delete.target 但是我得到了: Failed to
我有我的 bash 脚本,我将我的服务设置为在其上运行 ExecStart - 现在我的 bash 脚本直接通过用户“staytus”运行,按预期启动和停止事情,但由于某种原因,当我通过它运行它时我还
我试图让这个变量工作,但我总是遇到关于 systemd-escape 的错误。虽然我转义了特殊字符,但变量不起作用: status="systemctl status syslog-ng | grep
我有自动运行服务的问题。我想在用户登录后运行一个脚本。一旦我成功了,但是当我尝试将其自动化时,我会遇到错误并且找不到错误。 服务: Description=Service desc [Service]
我试图用systemctl命令构建一个CentOS镜像。但是每次我构建时都使用。我收到此错误: Step 5/7 : RUN systemctl enable syslog-ng ; systemct
我有一个简单的 bash 脚本,它调用 github 上的 git 存储库(/home/user/simple_git.sh): #!/bin/bash # Change to the Git rep
我刚刚开始查看 coreos 我尝试设置 redis 和 mysql docker 实例,但收效甚微。 我最初期望一切都可以开箱即用,但事实似乎并非如此。 基于此documentation on sy
我正在尝试使用以下指南在我的 Amazon EC2 实例 (ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20170414) 上设置 H
我想在 Amazon 云 VM 中将 elasticsearch 作为 systemd 服务运行。 If I run it simply through command line shell它将在子
我正在使用 systemctl 使用命令 systemctl show 从 ssh.service 单元文件中获取 EnvironmentFile 属性的值ssh.service -p Environ
我是一名优秀的程序员,十分优秀!