linux 查看服务是否存在,是否启动
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
文章目录
如何查看当前系统支持的服务程序有哪些?
下边,以ssh服务为例进行说明.
linux常见服务列表:
首先,我们应该对系统可能支持的服务,有个大概的印象.
参见:LINUX常见服务列表
查看服务是否存在
服务的概念:
服务(service) 本质就是进程,不过是运行在后台的进程,服务通常都会监听某个端口,等待其它程序的请求,比如(mysql , nginx, 防火墙等),因此我们服务也称为守护进程。
服务管理 命令: service 服务名 [start | stop | restart | reload | status]
查看当前系统环境,是否存在指定的服务
sudo service --status-all
sudo service --status-all | grep ssh*
查看指定的服务是否已经运行
service 服务名 status
sudo service ssh status
ps aux
服务即是特殊的进程,
如果启动了,一定会出现在进程管理列表中.
ps aux|grep ssh
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)