yum install -y mariadb-server git
systemctl enable mariadb-server
systemctl start mariadb-server
mysql -u root
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('1q2w3e');
useradd git
passwd git
su - git
wget https://dl.gogs.io/0.11.66/gogs_0.11.66_linux_amd64.tar.gz
tar zxf gogs_0.11.66_linux_amd64.tar.gz
创建gogs数据库
cd /home/git/gogs/scripts
mysql -uroot -p1q2w3e < /home/git/gogs/scripts/mysql.sql
启动gogs
cd /home/git/gogs
./gogs web &
访问http://gogs服务器IP:3000