在CentOS 8上安裝與配置Apache虛擬主機
Apache伺服器是現代作業系統包括UNIX和Windows等開發和維護開源的HTTP伺服器,apache提供一個安全、高效、可擴充套件的伺服器,提供與當前HTTP標準同步的HTTP服務。 |
實驗環境
作業系統: 8
web應用:apache
內網IP:192.168.3.21
執行:root
以root或具有sudo許可權的使用者身份登入執行如下操作。
安裝httpd服務
[root@linuxcool ~]# yum install httpd-devel.x86_64 httpd.x86_64 httpd-tools.x86_64
驗證httpd是否安裝成功
[root@linuxcool ~]# httpd -v Server 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 -DFOREGROUND May 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...message May 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/
安裝成功!
配置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.html <!DOCTYPE html> <html dir="ltr"> <head> <meta charset="utf-8"> <title>Welcome to Web1</title> </head> <body> <h1>Success! Web1 home page!</h1> </body> </html>
web2新增index.html
[root@linuxcool ~]# vim /var/www/web2/index.html <!DOCTYPE html> <html dir="ltr"> <head> <meta charset="utf-8"> <title>Welcome to Web1</title> </head> <body> <h1>Success! Web1 home page!</h1> </body> </html>
授權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.conf <VirtualHost *:80> ServerName web1.com ServerAlias www.web1.com ServerAdmin webmaster@example.com DocumentRoot /var/www/web1 <Directory /var/www/web1/> Options -Indexes +FollowSymLinks AllowOverride All </Directory> ErrorLog /var/log/httpd/example.com-error.log CustomLog /var/log/httpd/example.com-access.log combined </VirtualHost>
#web2
[root@linuxcool ~]# vim /etc/httpd/conf.d/web2.conf <VirtualHost *:80> ServerName web2.com ServerAlias www.web2.com ServerAdmin webmaster@example.com DocumentRoot /var/www/web2 <Directory /var/www/web2/> Options -Indexes +FollowSymLinks AllowOverride All </Directory> ErrorLog /var/log/httpd/example.com-error.log CustomLog /var/log/httpd/example.com-access.log combined </VirtualHost>
重啟httpd服務
[root@linuxcool ~]# systemctl restart httpd.service
驗證httpd虛擬主機結果
原文地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2696608/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [php]apache虛擬主機配置PHPApache
- KVM 虛擬機器安裝配置在CentOS6.2虛擬機CentOS
- VMware安裝CentOS虛擬機器與配置網路CentOS虛擬機
- 在Apache上實現多HTTPS虛擬主機ApacheHTTP
- virtualbox虛擬機器上安裝centOS的網路配置虛擬機CentOS
- 在 VMware workstation 安裝 CentOS 虛擬機器CentOS虛擬機
- 在虛擬機器CentOS中安裝docker虛擬機CentOSDocker
- 在VMware上安裝CentOS版本的Linux虛擬機器CentOSLinux虛擬機
- Ubuntu apache2配置虛擬主機UbuntuApache
- 使用虛擬機器在CentOS上安裝部署資料庫使用虛擬機CentOS資料庫
- VMware 安裝 Centos 7 虛擬機器配置網路CentOS虛擬機
- VMWare16建立虛擬機器與安裝CentOS 8(詳細教程)虛擬機CentOS
- CentOS 7 安裝虛擬機器CentOS虛擬機
- centos中安裝虛擬機器CentOS虛擬機
- 在VM虛擬機器中安裝centos7虛擬機CentOS
- 當年的筆記_apache配置虛擬主機筆記Apache
- PHP實踐之路(二)apache虛擬主機配置PHPApache
- Apache 配置各種虛擬主機實踐(轉)Apache
- Centos7虛擬機器安裝CentOS虛擬機
- CentOS 7虛擬機器安裝教程CentOS虛擬機
- 在CentOS上建立虛擬機器以及RedisCentOS虛擬機Redis
- 使用虛擬機器在CentOS上安裝部署openGauss資料庫指導虛擬機CentOS資料庫
- apache虛擬web主機構建ApacheWeb
- Nginx虛擬主機配置Nginx
- 虛擬機器Centos安裝docker小記虛擬機CentOSDocker
- 安裝VM虛擬機器 centos7虛擬機CentOS
- 虛擬機器 Centos5.5 安裝oracle虛擬機CentOSOracle
- VMware虛擬機器安裝Centos-7.9虛擬機CentOS
- 安裝虛擬機器和CentOS系統虛擬機CentOS
- 虛擬機器VMware 安裝centos、常規配置、共享檔案等虛擬機CentOS
- 在虛擬機器上安裝Mac os x 系統虛擬機Mac
- Apache 虛擬主機裡的 ServerName 指令ApacheServer
- Tomcat—部署配置及優化(安裝部署;虛擬主機配置;優化)Tomcat優化
- 在CentOS 7.5上安裝和配置ProFTPDCentOSFTP
- Linux虛擬機器安裝配置到專案上架Linux虛擬機
- 虛擬機器與電腦主機網路配置虛擬機
- Virtualbox 安裝centos7虛擬機器CentOS虛擬機
- centos 6.5安裝第一臺虛擬機器CentOS虛擬機