在 Raspberry Pi 上运行 etherpad 作为服务

在 Raspberry Pi 上运行 etherpad 作为服务

我正在我的 raspberry pi ubuntu 14.04 服务器上设置 etherpad-lite。我在尝试让 etherpad-lite 作为服务运行时遇到了问题,如下所示这些说明(我也检查了其他几个但没有帮助)。

使用以下命令启动服务后

service etherpad-lite start

我收到了令人沮丧的答复:

start-stop-daemon: unable to open pidfile '/var/run/etherpad-lite.pid' for writing (Permission denied)

我尝试更改文件的权限,给予 etherpad(运行 etherpad 的用户)写入权限,但没有任何改变。

sudo chown etherpad: /var/run/etherpad-lite.pid
sudo chmod 754 /var/run/etherpad-lite.pid

关于如何解决这个问题有什么想法吗?

相关内容