企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 1.Apache安装 * 安装 ``` yum install httpd ``` * 获取rpm包详细信息 ``` [root@VM_0_11_centos system]# rpm -qi httpd Name : httpd Version : 2.4.6 Release : 89.el7.centos.1 Architecture: x86_64 Install Date: 2019年08月13日 星期二 15时11分52秒 Group : System Environment/Daemons Size : 9817317 License : ASL 2.0 Signature : RSA/SHA256, 2019年07月31日 星期三 11时37分23秒, Key ID 24c6a8a7f4a80eb5 Source RPM : httpd-2.4.6-89.el7.centos.1.src.rpm Build Date : 2019年07月30日 星期二 01时21分18秒 Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem <http://bugs.centos.org> Vendor : CentOS URL : http://httpd.apache.org/ Summary : Apache HTTP Server Description : The Apache HTTP Server is a powerful, efficient, and extensible web server. ``` * 查看进程状态 ``` [root@VM_0_11_centos ~]# ps -ef|grep httpd apache 2046 15595 0 8月13 ? 00:00:00 /usr/sbin/httpd -DFOREGROUND root 15595 1 0 8月13 ? 00:00:05 /usr/sbin/httpd -DFOREGROUND apache 15596 15595 0 8月13 ? 00:00:00 /usr/sbin/httpd -DFOREGROUND apache 15597 15595 0 8月13 ? 00:00:00 /usr/sbin/httpd -DFOREGROUND apache 15598 15595 0 8月13 ? 00:00:00 /usr/sbin/httpd -DFOREGROUND apache 15599 15595 0 8月13 ? 00:00:00 /usr/sbin/httpd -DFOREGROUND apache 15600 15595 0 8月13 ? 00:00:00 /usr/sbin/httpd -DFOREGROUND apache 23565 15595 0 8月13 ? 00:00:00 /usr/sbin/httpd -DFOREGROUND root 23716 23670 0 23:32 pts/0 00:00:00 grep --color=auto httpd ``` * 启动服务 * 由于centos7使用systemd ,所以重定向使用了systemctl命令。 ``` [root@VM_0_11_centos ~]# sudo service httpd stop Redirecting to /bin/systemctl stop httpd.service ``` * 也可以直接使用`systemctl start httpd.service` 开启服务。 > 开启之后就可以在浏览器访问欢迎页。 ### 2. 虚拟主机配置 > 配置虚拟主机是为了我们可以使用不同的域名访问当前服务器的不同项目。 * 进入到`/etc/httpd/conf`目录,打开`httpd.conf`文件。 * 打开文件,在普通模式下输入/进行查找virtual关键字。 ``` <VirtualHost *:80> ServerName www.bizzbee.com DocumentRoot /data/www <Directory "/data/www"> Options Indexes FollowSymLinks AllowOverride None Require all granted <Directory> </VirtualHost> ``` ![](https://img.kancloud.cn/e3/e8/e3e8bc4f5c8793dbac0ea80edc5dc238_495x179.png) * 修改host,把域名指向我的腾讯云服务器公网IP。(注意是修改浏览器所在的本机) * 不要忘记在指定的根目录创建index.html。