溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Centos8怎么安裝Gogs托管服務(wù)

發(fā)布時(shí)間:2022-02-17 10:20:54 來(lái)源:億速云 閱讀:154 作者:iii 欄目:開(kāi)發(fā)技術(shù)

本篇內(nèi)容介紹了“Centos8怎么安裝Gogs托管服務(wù)”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

Dogs是一款極易搭建的自助 Git 服務(wù),具有易安裝,跨平臺(tái),輕量級(jí)的特點(diǎn)。可以根據(jù)操作系統(tǒng)平臺(tái)通過(guò) 二進(jìn)制運(yùn)行,還可以通過(guò) Docker 或 Vagrant,以及包管理安裝,任何 Go 語(yǔ)言 支持的平臺(tái)都可以運(yùn)行

Centos8怎么安裝Gogs托管服務(wù)

環(huán)境

  • Centos8
  • gogs_0.11.91

創(chuàng)建git用戶(hù)

[root@localhost ~]# useradd git[root@localhost ~]# echo '123456'|passwd --stdin gitChanging password for user git.
passwd: all authentication tokens updated successfully.

為git用戶(hù)設(shè)置sudo

[root@localhost ~]# visudogit     ALL=(ALL)       NOPASSWD: ALL
Centos8怎么安裝Gogs托管服務(wù)

下載并配置基本環(huán)境

[root@localhost ~]# yum -y install tar wget git mariadb mariadb-server

設(shè)置mariadb開(kāi)機(jī)啟動(dòng),并啟動(dòng)mariadb服務(wù)

[root@localhost ~]# systemctl enable mariadb --now

創(chuàng)建gogs數(shù)據(jù)庫(kù)

# 切換到git用戶(hù)[root@localhost ~]# su - git# 創(chuàng)建數(shù)據(jù)庫(kù)[git@localhost ~]$ mysql -u root -e "CREATE DATABASE IF NOT EXISTS gogs CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;"[git@localhost ~]$ mysql -u root -e "show databases;"+--------------------+
| Database           |
+--------------------+
| gogs               |
| information_schema |
| mysql              |
| performance_schema |
+--------------------+

Centos8怎么安裝Gogs托管服務(wù) 創(chuàng)建數(shù)據(jù)庫(kù)gogs用戶(hù),并授予訪問(wèn)gogs數(shù)據(jù)庫(kù)權(quán)限:

[git@localhost ~]$ mysql -u root -e "create user gogs; grant all privileges on gogs.* to gogs@'%' identified by 'gogs123';"# 查看用戶(hù)gogs是否添加,是否授予所有訪問(wèn)權(quán)。[git@localhost ~]$ mysql -u root -e "select Host,User,Password from mysql.user; show grants for gogs@'%';"
Centos8怎么安裝Gogs托管服務(wù)

下載gogs安裝包

從gogs的官網(wǎng) https://gogs.io/docs/installation/install_from_binary 下載對(duì)應(yīng)操作系統(tǒng)的安裝包。 Centos8怎么安裝Gogs托管服務(wù)

[git@localhost ~]$ wget https://dl.gogs.io/0.11.91/gogs_0.11.91_linux_amd64.tar.gz
[git@localhost ~]$ tar xvf gogs_0.11.91_linux_amd64.tar.gz

啟動(dòng)gogs并開(kāi)放防火墻的端口

[git@localhost gogs]$ sudo firewall-cmd --permanent --add-port=3000/tcp
success
[git@localhost gogs]$ sudo firewall-cmd --reload
success
[git@localhost ~]$ /home/git/gogs/gogs web

Centos8怎么安裝Gogs托管服務(wù) 打開(kāi)瀏覽器輸入服務(wù)器的ip地址,端口是3000。數(shù)據(jù)庫(kù)用戶(hù)和密碼,使用剛才創(chuàng)建的。“應(yīng)用URL”填寫(xiě)gogs服務(wù)器的ip地址。然后點(diǎn)擊立即安裝。

Centos8怎么安裝Gogs托管服務(wù) 之后,進(jìn)入登錄界面,我們可以創(chuàng)建一個(gè)新用戶(hù)。

Centos8怎么安裝Gogs托管服務(wù) 進(jìn)入注冊(cè)頁(yè)面,注冊(cè)用戶(hù)。

Centos8怎么安裝Gogs托管服務(wù) 注冊(cè)完成,登錄進(jìn)去,我們可以點(diǎn)我的倉(cāng)庫(kù),創(chuàng)建第一個(gè)倉(cāng)庫(kù)。

Centos8怎么安裝Gogs托管服務(wù)

Centos8怎么安裝Gogs托管服務(wù) 復(fù)制倉(cāng)庫(kù)地址,然后再自己的操作系統(tǒng)中下載該倉(cāng)庫(kù)

Centos8怎么安裝Gogs托管服務(wù) 在倉(cāng)庫(kù)中創(chuàng)建一個(gè)描述文件,并上傳到遠(yuǎn)程倉(cāng)庫(kù)中。

[root@localhost ~]# git clone http://192.168.60.137:3000/user01/example01.gitCloning into 'example01'...
warning: You appear to have cloned an empty repository.
[root@localhost ~]# cd example01/[root@localhost example01]# echo "This is example01's README" > README.md[root@localhost example01]# git add .[root@localhost example01]# git config --global user.name user01[root@localhost example01]# git config --global user.email user01@example.com[root@localhost example01]# git commit -m "add a README.md"[master (root-commit) 9d7df1d] add a README.md
1 file changed, 1 insertion(+)
create mode 100644 README.md
[root@localhost example01]# git pushEnumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Writing objects: 100% (3/3), 240 bytes | 240.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
Username for 'http://192.168.60.137:3000': user01
Password for 'http://user01@192.168.60.137:3000':
To http://192.168.60.137:3000/user01/example01.git
* [new branch]      master -> master

遠(yuǎn)程倉(cāng)庫(kù)中可以看到上傳成功。 Centos8怎么安裝Gogs托管服務(wù)

“Centos8怎么安裝Gogs托管服務(wù)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI