這篇文章主要介紹“Centos8系統(tǒng)怎么安裝Gogs”,在日常操作中,相信很多人在Centos8系統(tǒng)怎么安裝Gogs問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Centos8系統(tǒng)怎么安裝Gogs”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)公司-專(zhuān)業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性?xún)r(jià)比貞豐網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式貞豐網(wǎng)站制作公司更省心,省錢(qián),快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋貞豐地區(qū)。費(fèi)用合理售后完善,10余年實(shí)體公司更值得信賴(lài)。
Centos8環(huán)境
gogs_0.11.91
創(chuàng)建git用戶(hù)
[root@localhost ~]# useradd git [root@localhost ~]# echo '123456'|passwd --stdin git Changing password for user git. passwd: all authentication tokens updated successfully.
為git用戶(hù)設(shè)置sudo
[root@localhost ~]# visudo git ALL=(ALL) NOPASSWD: ALL
下載并配置基本環(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 | +--------------------+
創(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@'%';"
下載gogs安裝包
從gogs的官網(wǎng) https://gogs.io/docs/installation/install_from_binary 下載對(duì)應(yīng)操作系統(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
啟動(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
打開(kāi)瀏覽器輸入服務(wù)器的ip地址,端口是3000。數(shù)據(jù)庫(kù)用戶(hù)和密碼,使用剛才創(chuàng)建的。“應(yīng)用URL”填寫(xiě)gogs服務(wù)器的ip地址。然后點(diǎn)擊立即安裝。
之后,進(jìn)入登錄界面,我們可以創(chuàng)建一個(gè)新用戶(hù)。
進(jìn)入注冊(cè)頁(yè)面,注冊(cè)用戶(hù)。
注冊(cè)完成,登錄進(jìn)去,我們可以點(diǎn)我的倉(cāng)庫(kù),創(chuàng)建第一個(gè)倉(cāng)庫(kù)。
復(fù)制倉(cāng)庫(kù)地址,然后再自己的操作系統(tǒng)中下載該倉(cāng)庫(kù)
在倉(cāng)庫(kù)中創(chuàng)建一個(gè)描述文件,并上傳到遠(yuǎn)程倉(cāng)庫(kù)中。
[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
遠(yuǎn)程倉(cāng)庫(kù)中可以看到上傳成功。
到此,關(guān)于“Centos8系統(tǒng)怎么安裝Gogs”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
當(dāng)前文章:Centos8系統(tǒng)怎么安裝Gogs
分享網(wǎng)址:http://m.newbst.com/article18/iididp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、微信小程序、品牌網(wǎng)站設(shè)計(jì)、小程序開(kāi)發(fā)、App開(kāi)發(fā)、定制開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)