netstat -tlnp 看端口 httpd的端口是80,如果80端口是监听状态,则说明 http服务已经开启
ps -ef|grep http或者 ps aux|grep http 看httpd的进程
编译安装的systemctl status httpd 无法查看状态,如果是yum安装的可以
我的httpd.conf并不在安装目录下,是由于在解压后make前的配置信息
./configure -prefix=/usr/local/http2
--enable-moudles=all
--enable-mods-shared=all
--enable-so
--sysconfdir=/etc/httpd
--with-apr=/usr/local/apr
--with-apr-util=/usr/local/apr-util
--enable-ssl
--enable-cgi
--enable-rewrite
--enable-zlib
--with-pcre
--enable-module=most
--enable-mpms-shared=all
--enable-deflate
--enable-cgid
可以etc目录下用find | grep httpd 进入启用端口