Centos7如何查看正在运行的服务
顺带提一下,jupyter notebook的启动命令
jupyter notebook –allow-root 后台忽略挂起的启动命令 nohup jupyter notebook –allow-root
使用systemctl命令查看运行服务
CentOS使用systemctl命令来管理系统服务。您可以使用systemctl命令来查看当前正在运行的服务。以下是示例
- systemctl list-units –type=service –state=running
复制代码
在上述示例中,我们使用systemctl命令来列出所有正在运行的服务。我们使用list-units选项来列出所有服务,使用了–type=service选项来指定服务类型为service,使用了–state=running选项来指定服务状态为running。