/etc/init.d/ 文件夹中曾经有一个文件用于重新启动 ntopng。
我曾经使用的命令是:
sudo /etc/init.d/ntopng restart
但是现在有了 Ubuntu 18.04,该文件就消失了。
现在如何重启 ntopng?
答案1
init.d 脚本已转换为 systemd 单元,目前位于:
/etc/systemd/system
您现在可以通过以下方式重新启动 ntopng:
sudo systemctl restart ntopng
其他(大多数)单元文件位于:
/lib/systemd/system/
通过查看手册页可以了解有关 systemd 单元文件的更多信息:
man systemd.unit