diff options
author | 无闻 <joe2010xtmf@163.com> | 2014-04-23 05:20:51 -0400 |
---|---|---|
committer | 无闻 <joe2010xtmf@163.com> | 2014-04-23 05:20:51 -0400 |
commit | 7ded30ba5ba5f3bc52b860f50ab82895734f449f (patch) | |
tree | 9797e76f016f1c460cae0fad42b4a4307613deeb /doc/install_gogs_from_binary_on_ubuntu.md | |
parent | 9abb37b45e0213ce2922ba2fc543b15cec7814bb (diff) | |
parent | 649d0e1681001d1e100a646bd378e8d87dd73b21 (diff) |
Merge pull request #109 from laofo/master
Create the installation guide for gogs on ubuntu (src & binary)
Diffstat (limited to 'doc/install_gogs_from_binary_on_ubuntu.md')
-rw-r--r-- | doc/install_gogs_from_binary_on_ubuntu.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/install_gogs_from_binary_on_ubuntu.md b/doc/install_gogs_from_binary_on_ubuntu.md new file mode 100644 index 00000000..8079fd1a --- /dev/null +++ b/doc/install_gogs_from_binary_on_ubuntu.md @@ -0,0 +1,27 @@ +### 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 golang +- 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.2.0/linux/amd64 -o v0.2.0.zip +- unzip v0.2.0.zip +- ./start.sh + +> The up-to-date binary could be found at +> http://gobuild.io/download/github.com/gogits/gogs |