文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Centos8中如何部署Apache虚拟机

2023-06-27 23:46

关注

这篇文章主要介绍了Centos8中如何部署Apache虚拟机的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Centos8中如何部署Apache虚拟机文章都会有所收获,下面我们一起来看看吧。

实验环境

操作系统:Centos 8

web应用:apache

内网IP:192.168.3.21

shell执行:root

Centos8中如何部署Apache虚拟机

以root或具有sudo权限的用户身份登录执行如下操作。

安装httpd服务

[root@linuxcool ~]# yum install httpd-devel.x86_64 httpd.x86_64 httpd-tools.x86_64

验证httpd是否安装成功

[root@linuxcool ~]# httpd -vServer version: Apache/2.4.6 (CentOS)Server built:   Apr  2 2020 13:13:23

启动httpd服务

[root@linuxcool ~]# systemctl start httpd.service     [root@linuxcool ~]# systemctl status httpd.service● httpd.service - The Apache HTTP Server  Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled)  Active: active (running) since Fri 2020-05-22 12:23:03 CST; 25s ago    Docs: man:httpd(8)          man:apachectl(8)Main PID: 952 (httpd)  Status: "Total requests: 0; Current requests/sec: 0; Current traffic:   0 B/sec"   Tasks: 6  Memory: 3.6M  CGroup: /system.slice/httpd.service          ├─952 /usr/sbin/httpd -DFOREGROUND          ├─953 /usr/sbin/httpd -DFOREGROUND          ├─954 /usr/sbin/httpd -DFOREGROUND          ├─955 /usr/sbin/httpd -DFOREGROUND          ├─956 /usr/sbin/httpd -DFOREGROUND          └─957 /usr/sbin/httpd -DFOREGROUNDMay 22 12:23:03 linuxcool systemd[1]: Starting The Apache HTTP Server...May 22 12:23:03 linuxcool httpd[952]: AH00558: httpd: Could not reliably determine the server's fully qualified domain name, u...messageMay 22 12:23:03 linuxcool systemd[1]: Started The Apache HTTP Server.Hint: Some lines were ellipsized, use -l to show in full.

apache安装成功,默认web目录/var/www/

测试

http://192.168.3.21/
Centos8中如何部署Apache虚拟机

安装成功!

配置apache虚拟主机

创建网站目录

[root@linuxcool ~]# mkdir -p /var/www/web1[root@linuxcool ~]# mkdir -p /var/www/web2

web1添加index.html

[root@linuxcool ~]# vim /var/www/web1/index.htmlnbsp;html>"ltr">    "utf-8">   Welcome to Web1     Success! Web1 home page!

web2添加index.html

[root@linuxcool ~]# vim /var/www/web2/index.htmlnbsp;html>"ltr">    "utf-8">   Welcome to Web2     Success! Web2 home page!

授权web目录权限

[root@linuxcool ~]# chown -R apache: /var/www/web1/[root@linuxcool ~]# chown -R apache: /var/www/web2/

创建虚拟主机文件

#web1

[root@linuxcool ~]# vim /etc/httpd/conf.d/web1.confServerName web1.comServerAlias www.web1.comServerAdmin webmaster@example.comDocumentRoot /var/www/web1Options -Indexes +FollowSymLinksAllowOverride AllErrorLog /var/log/httpd/example.com-error.logCustomLog /var/log/httpd/example.com-access.log combined

#web2

[root@linuxcool ~]# vim /etc/httpd/conf.d/web2.confServerName web2.comServerAlias www.web2.comServerAdmin webmaster@example.comDocumentRoot /var/www/web2Options -Indexes +FollowSymLinksAllowOverride AllErrorLog /var/log/httpd/example.com-error.logCustomLog /var/log/httpd/example.com-access.log combined

重启httpd服务

[root@linuxcool ~]# systemctl restart httpd.service

验证httpd虚拟主机结果

http://www.web1.com

Centos8中如何部署Apache虚拟机

http://www.web2.com

Centos8中如何部署Apache虚拟机

关于“Centos8中如何部署Apache虚拟机”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Centos8中如何部署Apache虚拟机”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯