日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關咨詢
選擇下列產(chǎn)品馬上在線溝通
服務時間:8:30-17:00
你可能遇到了下面的問題
關閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
Centos8安裝Gogs托管服務

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

成都創(chuàng)新互聯(lián)公司是一家朝氣蓬勃的網(wǎng)站建設公司。公司專注于為企業(yè)提供信息化建設解決方案。從事網(wǎng)站開發(fā),網(wǎng)站制作,網(wǎng)站設計,網(wǎng)站模板,微信公眾號開發(fā),軟件開發(fā),微信小程序,10年建站對成都服務器租用等多個方面,擁有豐富的網(wǎng)站維護經(jīng)驗。

環(huán)境

  • Centos8
  • gogs_0.11.91

創(chuàng)建git用戶

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

為git用戶設置sudo

[root@localhost ~]# visudo
git     ALL=(ALL)       NOPASSWD: ALL

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

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

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

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

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

# 切換到git用戶
[root@localhost ~]# su - git
# 創(chuàng)建數(shù)據(jù)庫
[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 |
+--------------------+

創(chuàng)建數(shù)據(jù)庫gogs用戶,并授予訪問gogs數(shù)據(jù)庫權限:

[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@'%';"

下載gogs安裝包

從gogs的官網(wǎng) https://gogs.io/docs/installation/install_from_binary 下載對應操作系統(tǒng)的安裝包。

[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

打開瀏覽器輸入服務器的ip地址,端口是3000。數(shù)據(jù)庫用戶和密碼,使用剛才創(chuàng)建的?!皯肬RL”填寫gogs服務器的ip地址。然后點擊立即安裝。

之后,進入登錄界面,我們可以創(chuàng)建一個新用戶。

進入注冊頁面,注冊用戶。

注冊完成,登錄進去,我們可以點我的倉庫,創(chuàng)建第一個倉庫。

復制倉庫地址,然后再自己的操作系統(tǒng)中下載該倉庫

在倉庫中創(chuàng)建一個描述文件,并上傳到遠程倉庫中。

[root@localhost ~]# git clone http://192.168.60.137:3000/user01/example01.git
Cloning 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 push
Enumerating 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

遠程倉庫中可以看到上傳成功。


網(wǎng)站欄目:Centos8安裝Gogs托管服務
網(wǎng)頁URL:http://www.5511xx.com/article/dhojshh.html