当前位置:网站首页>Experiment with a web server that configures its own content

Experiment with a web server that configures its own content

2022-07-07 12:25:00 Miracle_ ze

Experiment with your own configuration web The server

1. Step requirements

Step requirements :
1、 Configure the software warehouse and install the software
2、 Modify the configuration file
3、 Stop firewall
4、 Customize the page and start the service
5、 adopt Windows Browser access to the system

2. Configure the software warehouse and install the software

In the terminal /etc/yum.repos.d Create a warehouse under the directory of base.repo
The instructions are as follows

1. Jump to the current position

cd /etc/yum.repos.d

2. Create repository

 Insert picture description here

touch base.repo

3. Edit the contents of the warehouse file

vim base.repo

Type in

[baseos]
name=baseos
baseurl=/mnt/BaseOS
gpgcheck=0
[appstream]
name=appstream
baseurl=/mnt/AppStream
gpgcheck=0

4. Install the software

1. mount

mount /dev/sr0 /mnt

2. Install the software

dnf install  httpd -y

When finished, the last line shows complete, The installation is successful

Be careful :
 Insert picture description here

2. Modify the configuration file

1. Successfully installed httpd Post configuration file content

vim /etc/httpd/conf/httpd.conf

Enter the last line mode after entering , Input set nu: According to the line Numbers
Around the 98 That's ok find #ServerName www.example.com:80
Place the cursor on 98 That's ok , stay vim Input in the general mode of yy: Copy the line where the cursor is , And then you type in p: Paste to the next line under the cursor —— This is to prevent forgetting that the original website cannot be modified
Per row # Notation , Only by removing it can it take effect
For its website www.example.com It is amended as follows 0.0.0.0
0.0.0.0 Represents any address

 98 #ServerName www.example.com:80
 99 ServerName 0.0.0.0:80

2. Configure files , Then install vim

dnf install vim -y

Enter again after completion to view

vim /etc/httpd/conf/httpd.conf

3. Turn off firewall

1. Turn off firewall

systemctl stop firewalld

4. Customize the page and start the service

1. Turn on httpd service

systemctl start httpd

2. Page content input

echo welcome > /var/www/html/index.html

5. adopt Windows Browser access to the system

1. Browser input virtual machine ip Address

 Insert picture description here

tip

Prerequisite :
1、 The warehouse has been created in your system , Only with a warehouse can you download and install packages , So that your system can download packages, you can refer to the following Article reference article link :https://www.cnblogs.com/galsnag/p/13896354.htm
2、 Your system has IP Can pass dhclient obtain ; ifconfig Inquire about
3、 Your system has been installed Vim ; If it doesn't pass yum install vim -y download , perhaps dnf install vim -y
4. vim Inside # The latter means to comment out ;web The default port number of 80

原网站

版权声明
本文为[Miracle_ ze]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202130618062667.html