apache 服务器概述--安装(一)

时间:2022-09-16 03:34:21

一、安装httpd,elinks浏览器

[root@ ~]# yum install elinks httpd -y
[root@ ~]# elinks www.baidu.com

二、配置文件

# yum 安装默认的位置
[root@ ~]# ls /etc/httpd/conf/
httpd.conf magic

三、启动

[root@ ~]# service httpd restart  && [root@111 ~]# chkconfig httpd on
Redirecting to /bin/systemctl restart httpd.service
[root@ ~]# ps aux | grep httpd
root 0.7 0.1 ? Ss : : /usr/sbin/httpd -DFOREGROUND
apache 0.0 0.0 ? S : : /usr/sbin/httpd -DFOREGROUND
apache 0.0 0.0 ? S : : /usr/sbin/httpd -DFOREGROUND
apache 0.0 0.0 ? S : : /usr/sbin/httpd -DFOREGROUND
apache 0.0 0.0 ? S : : /usr/sbin/httpd -DFOREGROUND
apache 0.0 0.0 ? S : : /usr/sbin/httpd -DFOREGROUND
root 0.0 0.0 pts/ S+ : : grep --color=auto httpd
[root@ ~]#

四、通过浏览器访问 httpd 的ip

。。。略