This website works better with JavaScript
首頁
探索
註冊
登入
SongZihuan
/
HuanGogs
镜像来自
https://github.com/SongZihuan/huan-gogs.git
關注
1
讚好
0
複刻
0
檔案
問題管理
0
Wiki
目錄樹:
9dfb7de371
分支列表
標籤列表
dependabot/go_modules/go_modules-bbb8b02913
main
prod
HuanGogs
/
doc
/
install_gogs_from_binary_on_ubuntu.md
install_gogs_from_binary_on_ubuntu.md
756 B
文件歷史
原始文件
Binary install gogs on ubuntu 14.04 LTS
create user and install denpendency
sudo adduser git
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install git
sudo apt-get install mysql-server
create the database
$mysql -u root -p
mysql> SET GLOBAL storage_engine = 'InnoDB';
mysql> CREATE DATABASE gogs CHARACTER SET utf8 COLLATE utf8_bin;
mysql> GRANT ALL PRIVILEGES ON gogs.* TO 'root'@'localhost' IDENTIFIED BY 'password';
mysql> FLUSH PRIVILEGES;
mysql> QUIT
install the gogs
mkdir gogs
cd gogs
curl -L
http://gobuild.io/github.com/gogits/gogs/v0.3.0/linux/amd64
-o v0.3.0.zip
unzip v0.3.0.zip
./start.sh
The up-to-date binary could be found at
http://gobuild.io/download/github.com/gogits/gogs