You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea-fork-majority-judgment/doc/install_gogs_from_binary_on...

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

The up-to-date binary could be found at http://gobuild.io/download/github.com/gogits/gogs