apache2的安装包叫httpd
apche2下的配置文件都在/etc/httpd/conf。例如:httpd.conf是http的配置文件。php.conf是php的配置文件。ssl.conf是https的配置文件。
有时候安装anaconda的时候是顺带安装了httpd的。
yum list installed httpd # 查看是否安装
yum install httpd* -y # 一路yes安装
yum list httpd # 查看所有可安装版本
yum list updates httpd # 查看可否更新
yum update httpd*
cat /etc/httpd/conf/httpd.conf
# 端口 Listen 80
# 根目录 ServerRoot "/etc/httpd"
# 网页存放目录 DocumentRoot "/var/www/html"
# 自己设置一个访问内容
cd /var/www/html
mkdir test
vim hello.html
systemctl start httpd.service # 启动httpd
systemctl status httpd.service # 查看状态
curl http://ip/test/hello.html #不加端口,收到html代码表示成功
yum list installed php # 查看是否安装
yum install php
vim /etc/httpd/conf.d/php.conf
# 在<FilesMatch \.php$>下面的内容追加
AddHandler application/x-httpd-php .php
cd /var/www/html
vim hello.php
# 如下内容
<html>
<head>
<title>hello world</title>
<meta charset="UTF-8">
</head>
<body>
<?php
$msg = '这里是hello.php!!!!';
?>
<h2> <?php echo $msg; ?></h2>
</body>
</html>
访问 http:ip/hello.php
如果已经安装mod_ssl,那么apache2已经支持https方式访问。
yum install -y mod_ssl
systemctl restart httpd