当服务已启动时“systemctl start service”

当服务已启动时“systemctl start service”

systemctl start apache2我,当您运行(或其他服务)时,服务已经启动,究竟会发生什么?

每天启动几百次 apache2 服务会不会造成麻烦?(防止服务关闭)或者会不会占用内存或者造成危险?

答案1

你为什么不直接用它systemctl is-active来检查它是否正在运行?

例如:

systemctl is-active --quiet apache2 || systemctl start apache2

相关内容