91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Centos8怎么安裝Gogs托管服務

發布時間:2022-02-17 10:20:54 來源:億速云 閱讀:154 作者:iii 欄目:開發技術

本篇內容介紹了“Centos8怎么安裝Gogs托管服務”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

Dogs是一款極易搭建的自助 Git 服務,具有易安裝,跨平臺,輕量級的特點。可以根據操作系統平臺通過 二進制運行,還可以通過 Docker 或 Vagrant,以及包管理安裝,任何 Go 語言 支持的平臺都可以運行

Centos8怎么安裝Gogs托管服務

環境

  • Centos8
  • gogs_0.11.91

創建git用戶

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

為git用戶設置sudo

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

下載并配置基本環境

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

設置mariadb開機啟動,并啟動mariadb服務

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

創建gogs數據庫

# 切換到git用戶[root@localhost ~]# su - git# 創建數據庫[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托管服務 創建數據庫gogs用戶,并授予訪問gogs數據庫權限:

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

下載gogs安裝包

從gogs的官網 https://gogs.io/docs/installation/install_from_binary 下載對應操作系統的安裝包。 Centos8怎么安裝Gogs托管服務

[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

啟動gogs并開放防火墻的端口

[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托管服務 打開瀏覽器輸入服務器的ip地址,端口是3000。數據庫用戶和密碼,使用剛才創建的。“應用URL”填寫gogs服務器的ip地址。然后點擊立即安裝。

Centos8怎么安裝Gogs托管服務 之后,進入登錄界面,我們可以創建一個新用戶。

Centos8怎么安裝Gogs托管服務 進入注冊頁面,注冊用戶。

Centos8怎么安裝Gogs托管服務 注冊完成,登錄進去,我們可以點我的倉庫,創建第一個倉庫。

Centos8怎么安裝Gogs托管服務

Centos8怎么安裝Gogs托管服務 復制倉庫地址,然后再自己的操作系統中下載該倉庫

Centos8怎么安裝Gogs托管服務 在倉庫中創建一個描述文件,并上傳到遠程倉庫中。

[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

遠程倉庫中可以看到上傳成功。 Centos8怎么安裝Gogs托管服務

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

五莲县| 长乐市| 遵义县| 湖北省| 易门县| 澄迈县| 黔南| 阳朔县| 六安市| 土默特左旗| 大城县| 修文县| 临邑县| 日喀则市| 桂东县| 西吉县| 砀山县| 金乡县| 乐平市| 安顺市| 阳原县| 原阳县| 宜章县| 廉江市| 周口市| 石棉县| 蓬溪县| 尼勒克县| 葵青区| 金昌市| 承德市| 南木林县| 弥勒县| 庆云县| 丰台区| 湾仔区| 崇仁县| 南投市| 青阳县| 丁青县| 南和县|