Windows 下安装 gogs

参考地址:

https://gogs.io/docs/installation/install_from_binary

https://gogs.io/docs/installation/run_as_windows_service

https://gogs.io/docs/installation/configuration_and_run

本文用到的软件(含版本)

  • gogs_0.11.91_windows_386_mws.zip
  • mysql-5.5.28-win32.msi
  • Git-2.23.0-64-bit.exe

----------------------------------------------------------------------------------------------------------------------------------------------------------------

  • 安装Git
  • 下载windows版gogs,文件名中带mws字样的,支持内置 Windows 服务(也就是配置更简单)
  • 把gogs压缩包解压出来放到适当的位置
  • 打开cmd.exe,cd到从上一步解压出来的文件夹,运行命令gogs web

Windows 下安装 gogs_第1张图片

 

  • 访问http://127.0.0.1:3000/进行初次配置。成功配置后,会创建gogs\custom\conf\app.ini文件,此为gogs的配置文件
    • 其中数据库配置中,如果用MySQL的话,需要在上一步运行命令gogs web前事先安装好MySQL,并且MySQL的要使用INNODB 引擎以及 utf8_general_ci 字符集(安装时MySQL时可以设定的)。
      • 查看MySQL引擎方法:MySQL Command Line Client中输入show variables like '%storage_engine%';(含分号)
      • 查看MySQL字符集方法:MySQL Command Line Client中输入show variables like 'collation%';(含分号)
    • 创建名为gogs的数据库(在上面解压出来的gogs文件夹里的script文件里,有名为mysql.sql的文件,在MySQL Command Line Client里运行mysql.sql的脚本即可)

Windows 下安装 gogs_第2张图片

  • 注册为 Windows 服务运行:
    • 在cmd.exe中运行如下命令即可,记得修改binPath和config的值为本机的真实值
      • C:\> sc create gogs start= auto binPath= "\"C:\gogs\gogs.exe\" web --config \"C:\gogs\custom\conf\app.ini\""

以上

你可能感兴趣的:(Windows,版本托管)