httpd基本命令

Posted zxiaotian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了httpd基本命令相关的知识,希望对你有一定的参考价值。

查看有没有安装包:

#rpm -ql httpd

不加l是查看安装包

 

#yum list installed

 

来查案安装过的包,  +  |grep httpd

#yum list installed | grep httpd

 

 

判断服务有没有起来

#systemctl status httpd

 

从进程上来看    是否有这样的进程

#ps aux | grep httpd

 

来查看有没有80的端口

#ss -tanmlp | grep httpd

 

关掉服务:1

#systemctl stop httpd

查看服务器状态

#systenctl status httpd

2

#sysremctl start httpd

#systemctl status httpd

 

另一种

#ps aux | grep httpd

#kill -9 前段号码

      

 

再来看看进程

failed挂起的状态   停止的状态  ==  关掉  

 

 

关掉以后没有端口号:

#systemctl stop httpd

#ss -tnmlp | grep httpd

此时没有端口号

查看端口号

#ss -tnmlp | grep httpd

技术分享图片

 

以上是关于httpd基本命令的主要内容,如果未能解决你的问题,请参考以下文章

PHP——基本使用

玩转Linux之基本命令2

常用Linux命令

linux中find命令使用方法

Server - Apache - 基本操作: 安装, 卸载, 启停

linux in-s命令怎么用