1. CauseMust see The ultimate goal of this article is to enable Android terminals to access the git service in the virtual machine, so it is necessary to build a git server with http protocol. How to build a git server with http protocol has been described by predecessors. The author then draws on the predecessors' work here 2. Equipment InformationWindows 10 Home Chinese Edition (1903) VMware 15Pro (15.5.0 build-14665864) CentOS 8 (1905 has closed the GUI, VMware uses NAT mode) 3. Preparation1. Open port 80 in Windows Firewall. Control Panel -> System and Security -> Windows Defender Firewall. Click Advanced Settings -> Click Inbound Rules -> New Rule. Change the rule type to be created to Port. Set it as shown in the figure. Select Allow the connection and follow the instructions to set up Name setting: click Outbound Rules -> Create New Rule. The subsequent steps are consistent with the above inbound rule settings. 2. Disable SELinux Open the selinux configuration file vi /etc/selinux/config Change to SELINUX=disabled and restart centOS to permanently disable SELinux Note: 1. SELinux has 3 states: Enforcing, Permissive and Disabled 2. View the current state command: getenforcing 3. Temporary shutdown command: setenforce 0 4. Temporary enable: setenforce 1 (cannot be used to enable after permanent shutdown) (III) Change the virtual network editor. Click Edit in the VMware menu bar -> Virtual Network Editor -> Change Settings. Click VMnet8 NAT Mode -> NAT Settings -> Add. Set it as shown in the figure (the virtual machine IP address is queried through ifconfig, and the description is optional). 4. Install Apache(I) Install httpd (II) Start the httpd service (III) Modify the firewalld configuration file and restart firewalld firewall-cmd --zone=public --add-port=80/tcp --permanent systemctl restart firewalld.service If you find it troublesome, you can just turn off the firewall Note: 1. Check the firewall status: systemctl status firewalld 2. Temporarily turn off the firewall: systemctl stop firewalld 3. Permanently turn off the firewall: systemctl disable firewalld 4. Restart the firewall: systemctl enable firewalld (this command can permanently turn on the firewall) 5. Configure git1. Create an empty warehouse mkdir -p /home/gitrepo/share.git //The empty repository can be set in any directory cd /home/gitrepo/share.gitgit init --barechown -R apache:apache /home/gitrepo (II) Create an account and set permissions htpasswd -m -c /etc/httpd/conf.d/git-team.htpasswd XXX //XXX is the account name and can be set arbitrarily chown apache:apache /etc/httpd/conf.d/git-team.htpasswdchmod 640 /etc/httpd/conf.d/git-team.htpasswd 6. Configure Apache1. Edit the configuration file Add the following content above the last line of IncludeOptional conf.d/*.conf <VirtualHost *:80> ServerName XXXX #centOS IP address SetEnv GIT_HTTP_EXPORT_ALL SetEnv GIT_PROJECT_ROOT /home/gitrepo #This should be consistent with the location where the empty repository is created ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/ <Location /> AuthType Basic AuthName "Git" AuthUserFile /etc/httpd/conf.d/git-team.htpasswd Require valid-user </Location> </VirtualHost> (II) Restart httpd Note: 1. Query the status of httpd service: systemctl status httpd.service 2. Query whether the httpd service is started at boot: systemctl is-enabled httpd.service 3. Set the httpd service to start at boot: systemctl enable httpd.service 4. Set the httpd service to not start at boot: systemctl disable httpd.service After completing the above operations, you can perform git operations on the external network, such as clone git clone http://windows_IP_address/git/share.git 7. Access the above Git service from Android terminalPocket Git is recommended Download address: Link: https://pan.baidu.com/s/1JAUsvU-qKAg-7FJGWv2JSA Extraction code: 9cgu So far, we have built a Git service based on the http protocol, and used Pocket Git to transfer files between Android and centOS 8 on the computer. Summarize The above is the method introduced by the editor to build Git service based on http protocol on VMware+centOS 8. I hope it will be helpful to everyone! You may also be interested in:
|
<<: Complete step record of Vue encapsulation of general table components
>>: Detailed graphic tutorial on how to install the unzipped version of MySQL under Windows 10
Preface There is a scenario where, for the sake o...
1. Preparation Middleware: Tomcat, Redis, Nginx J...
Table of contents 1. Character Function 1. Case c...
Simulation tables and data scripts Copy the follo...
Phrase elements such as <em></em> can ...
Let's take a look at my error code first. htm...
Basics A transaction is an atomic operation on a ...
Flexible layout (Flexbox) is becoming increasingl...
Prometheus (also called Prometheus) official webs...
Docker has been very popular in the past two year...
Remount the data disk after initializing the syst...
<br />Without any warning, I saw news on cnB...
Table of contents Effect demonstration:Main JS co...
If the field storing the name uses the GBK charac...
Preface In the daily development or maintenance o...