Linux中Apache安装与配置
在CentOS 上安装ApacheApache在默认的CentOS存储库中可用,并且安装非常简单。为了安装Apache Web Server,首先通过运行以下命令更新本地软件包在基于RHEL的发行版中,Apache软件包和服务称为httpd。要安装Apache,运行以下命令:[root@localhost ]# sudo yum update更新完成后,就可以安装Apache了。[root@loc
在CentOS 上安装Apache
Apache在默认的CentOS存储库中可用,并且安装非常简单。为了安装Apache Web Server,首先通过运行以下命令更新本地软件包
在基于RHEL的发行版中,Apache软件包和服务称为httpd。 要安装Apache,运行以下命令:
[root@localhost ]# sudo yum update
更新完成后,就可以安装Apache了。
[root@localhost ]# yum install httpd
启动Apache Web服务器
为了启动您的Apache Web服务器,请运行以下命令
[root@localhost ]# systemctl start httpd
确保启用您的httpd服务,以使其在系统启动时启动。
[root@localhost ]# systemctl enable httpd
Created symlink /etc/systemd/system/multi-user.target.wants/httpd.service → /usr/lib/systemd/system/httpd.service.
[root@localhost ]# systemctl enable httpd
Created symlink /etc/systemd/system/multi-user.target.wants/httpd.service → /usr/lib/systemd/system/httpd.service.
最后,通过运行一个简单的status命令,确保您的Apache Web服务器正常运行。
[root@localhost ]# systemctl status httpd
您还可以检查Web服务器的版本,以确保已正确安装。
[root@localhost ]# httpd -v
Server version: Apache/2.4.37 (centos)
Server built: Oct 7 2019 21:42:02
更多推荐
所有评论(0)