In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces how to build a Git server in CentOS, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let Xiaobian take you to understand.
Preface
We can GitHub public repositories of some open source code, but there is a charge for private repositories. The company usually builds its own Git server, and I practice it by building it on my own server.
Before we begin, let's talk about the server information. This is Aliyun's CentOS 6.564-bit operating system.
Confirm whether Git is installed on the server
[root@iZ25r8k6ifuZ git] # rpm-qa gitgit-1.7.1-3.el6_4.1.x86_64
It has also been installed here, if it is not installed, you can install it with yum install git.
Second, create git users
Here you can choose to create a new user to test, or you can directly use your root to do the following. The author is also looking at the information step by step, here to create a new user teslachen to operate.
[root@iZ25r8k6ifuZ ~] # useradd tesla [root@iZ25r8k6ifuZ ~] # passwd tesla
Change the password of user tesla.
New password:
Invalid password: it does not contain enough different characters
Invalid password: too simple
Re-enter the new password:
Passwd: all authentication tokens have been successfully updated.
Note 1: if the user permission to create is not enough, please add sudo
Note 2: there will be a prompt if setting the user's password is too simple, but it can still be set successfully.
Generate ssh public key
Many Git servers use the SSH public key for authentication. In order to provide a SSH public key to the Git server, if a system user does not already have a key, one must be generated for it in advance.
Linux can run ssh-keygen-t rsa locally to generate keys and copy .pub files to the server.
[root@iZ25r8k6ifuZ ~] # su tesla [tesla@iZ25r8k6ifuZ root] $cd ~ [tesla@iZ25r8k6ifuZ ~] $mkdir .ssh [tesla@iZ25r8k6ifuZ ~] $ssh-keygen-t rsaGenerating public/private rsa key pair.Enter file in which to save the key (/ home/tesla/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again:Your identification has been saved in / home/tesla/.ssh/id_rsa.Your public key has been saved in / home/tesla/.ssh/id_rsa .pubescent key fingerprint is:13:bf:75:ba:67:7f:0e:a0:47:7a:fe:25:bc:81:85:c3 tesla@iZ25r8k6ifuZThe key's randomart image is:+-- [RSA 2048]-+ |. | | o. . | | S. E o | |. O | | + = =. | + .o. | | ointoo+ | +-+ [tesla@iZ25r8k6ifuZ ~] $cd .ssh / [tesla@iZ25r8k6ifuZ .ssh] $cat id_rsa.pub > > ~ / .ssh/authorized_keysexit
Add tesla to the sudoers file
The tesla user now does not have permission to operate on some folders. Modify the / etc/sudoers file to change his permissions. The top administrator user opens it with the following command.
[root@iZ25r8k6ifuZ ~] # visudo
Then we find the following line in vim
Root ALL= (ALL) ALL
Press the I key to start the insert, enter and add on the following line
Tesla ALL= (ALL) ALL
Then press the ESC key, enter: wq, enter and save exit
5. Create a Git code repository
[root@iZ25r8k6ifuZ ~] # mkdir / teslaRepo [root@iZ25r8k6ifuZ ~] # cd / teslaRepo/ [root@iZ25r8k6ifuZ teslaRepo] # sudo mkdir teslaProject.git [root@iZ25r8k6ifuZ teslaRepo] # chown tesla:tesla / teslaRepo/ [root@iZ25r8k6ifuZ teslaRepo] # chown-R tesla:git / teslaRepo/ [root@iZ25r8k6ifuZ teslaRepo] # cd teslaProject.git/ [root@iZ25r8k6ifuZ teslaProject.git] # sudo git-bare initInitialized empty Git repository in / teslaRepo/teslaProject.git/
Such a Git warehouse called teslaProject has been created.
6. Use of local testing
You can test locally on the server, or you can test it directly on your computer. Below I use my own MBP to do the test.
Localhost:~ okay$ cd Desktop/git/localhost:git okay$ mkdir teslaRepolocalhost:git okay$ cd teslaRepo/localhost:teslaRepo okay$ git initInitialized empty Git repository in / Users/okay/Desktop/git/teslaRepo/.git/localhost:teslaRepo okay$ git remote add origin tesla@123.57.159.74:/teslaRepo/teslaProject.git
The above command creates a folder locally and adds a remote repository on the server
Localhost:teslaRepo okay$ touch a.txtlocalhost:teslaRepo okay$ git add a.txtlocalhost:teslaRepo okay$ git commit-m "init commit" [master (root-commit) d14cd3b] init commit 1 file changed, 0 insertions (+), 0 deletions (-) create mode 100644 a.txt
The above command creates an a.txt locally and submits it once
Localhost:teslaRepo okay$ git push origin mastertesla@123.57.159.74's password:Counting objects: 3, done.Writing objects: 100,202 bytes | 0 bytes/s, done.Total 3 (delta 0), reused 0 (delta 0) To tesla@123.57.159.74:/teslaRepo/teslaProject.git * [new branch] master-> master
The above command push the local code to the remote server. Let's check the local clone at once to see if it is correct.
7 Local clone
Localhost:git okay$ mkdir tttlocalhost:git okay$ cd tttlocalhost:ttt okay$ git clone tesla@123.57.159.74:/teslaRepo/teslaProject.gitCloning into 'teslaProject'...tesla@123.57.159.74's password:remote: Counting objects: 3, done.remote: Total 3 (delta 0), reused 0 (delta 0) Receiving objects: 100% (3amp 3), done.Checking connectivity... Done.
Clone is done. Let's take a look at the folder directory.
The a.txt file from push to the server has been downloaded by clone.
-dividing line-
1. View system user groups
-d: specifies the delimiter of the field. The default field delimiter is "TAB"
-f: displays the contents of the specified field
Cut-d:-F1 / etc/group
two。 View system users
Cut-d:-F1 / etc/passwd
3. Clone warehouse
Git clone git@your_gitServer_ip:/home/gitrepo/sample.git
4. Push already has a warehouse
/ / master branch demonstration git checkout mastergit remote rm origingit remote add origingit @ your_gitServer_ip:/home/gitrepo/sample.gitgit push-u origin master Thank you for reading this article carefully. I hope the article "how to build a Git Server in CentOS" shared by the editor will be helpful to you. At the same time, I hope you will support us, pay attention to the industry information channel, and more related knowledge is waiting for you to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.