Ubuntu 14.04 安装Git Server Gogs

Ubuntu 14.04 安装Git Server Gogs

项目源码地址:
https://github.com/gogits/gogs
安装参考文档:
https://gogs.io/docs/installation
https://gogs.io/docs/installation/install_from_binary.html

1. 安装mysql和git

sudo apt-get install git mysql-server mysql-client libmysqlclient-dev

过程中输入mysql账户root的密码,要记下

sudo netstat -tap | grep mysql

通过上述命令检查之后,如果看到有mysql 的socket处于 listen 状态则表示安装成功。

2. 创建Gogit需要的数据库

mysql -u root -p
然后执行
https://github.com/gogits/gogs/blob/master/scripts/mysql.sql
中的sql语句

3. 下载最新的release版本

https://github.com/gogits/gogs/releases
解压后,cd 到解压目录,然后执行./gogs web

4. 首次需要配置数据库

打开浏览器,输入 http://localhost:3000/

图中红色标注的是之前安装数据库创建的密码

点下面安装后,跳转到登录

以上配置信息保存在以下文件中
./gogs/custom/conf/app.ini

你可能感兴趣的:(ubuntu,中开发环境搭建)