Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1 | = Gerrit Code Review - Standalone Daemon Installation Guide |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 2 | |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 3 | [[requirements]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 4 | == Requirements |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 5 | To run the Gerrit service, the following requirements must be met on |
| 6 | the host: |
| 7 | |
Gert van Dijk | a9d5511 | 2018-08-16 12:07:13 +0200 | [diff] [blame^] | 8 | * JRE, version 1.8 http://www.oracle.com/technetwork/java/javase/downloads/index.html[Download] |
| 9 | + |
| 10 | Gerrit is not yet compatible with Java 9 or newer at this time. |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 11 | |
David Pursehouse | 3be717b | 2013-05-13 13:56:11 +0900 | [diff] [blame] | 12 | You'll also need an SQL database to house the review metadata. You have the |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 13 | choice of either using the embedded H2 or to host your own MySQL or PostgreSQL. |
| 14 | |
Mark Derricutt | de6c16d | 2014-03-25 13:45:05 +1300 | [diff] [blame] | 15 | [[cryptography]] |
| 16 | == Configure Java for Strong Cryptography |
| 17 | Support for extra strength cryptographic ciphers: _AES128CTR_, _AES256CTR_, |
| 18 | _ARCFOUR256_, and _ARCFOUR128_ can be enabled by downloading the _Java |
| 19 | Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files_ |
| 20 | from Oracle and installing them into your JRE. |
| 21 | |
Michael Ochmann | 8129ece | 2016-07-08 11:25:25 +0200 | [diff] [blame] | 22 | [NOTE] |
| 23 | Installing JCE extensions is optional and export restrictions may apply. |
Mark Derricutt | de6c16d | 2014-03-25 13:45:05 +1300 | [diff] [blame] | 24 | |
| 25 | . Download the unlimited strength JCE policy files. |
| 26 | + |
| 27 | - link:http://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html[JDK7 JCE policy files] |
| 28 | - link:http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html[JDK8 JCE policy files] |
| 29 | . Uncompress and extract the downloaded file. |
| 30 | + |
| 31 | The downloaded file contains the following files: |
| 32 | + |
| 33 | [cols="2"] |
| 34 | |=== |
| 35 | |README.txt |
| 36 | |Information about JCE and installation guide |
| 37 | |
| 38 | |local_policy.jar |
| 39 | |Unlimited strength local policy file |
| 40 | |
| 41 | |US_export_policy.jar |
| 42 | |Unlimited strength US export policy file |
| 43 | |=== |
| 44 | . Install the unlimited strength policy JAR files by following instructions |
| 45 | found in `README.txt`. |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 46 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 47 | [[download]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 48 | == Download Gerrit |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 49 | |
Shawn O. Pearce | 31af1ff | 2009-01-26 12:04:41 -0800 | [diff] [blame] | 50 | Current and past binary releases of Gerrit can be obtained from |
Shawn Pearce | 6d7ebc6 | 2015-06-12 16:34:42 -0700 | [diff] [blame] | 51 | the link:https://www.gerritcodereview.com/download/index.html[ |
David Pursehouse | 8d2b4a0 | 2013-10-18 11:01:28 +0900 | [diff] [blame] | 52 | Gerrit Releases site]. |
Shawn O. Pearce | 31af1ff | 2009-01-26 12:04:41 -0800 | [diff] [blame] | 53 | |
Shawn O. Pearce | 8ddb8cb | 2009-09-28 12:21:28 -0700 | [diff] [blame] | 54 | Download any current `*.war` package. The war will be referred to as |
| 55 | `gerrit.war` from this point forward, so you may find it easier to |
Anthony | d3aed4c | 2009-09-26 13:48:10 -0400 | [diff] [blame] | 56 | rename the downloaded file. |
Shawn O. Pearce | b8527ea | 2009-02-02 15:39:12 -0800 | [diff] [blame] | 57 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 58 | If you would prefer to build Gerrit directly from source, review |
| 59 | the notes under link:dev-readme.html[developer setup]. |
Shawn O. Pearce | 31af1ff | 2009-01-26 12:04:41 -0800 | [diff] [blame] | 60 | |
Jason Huntley | 25bbd51 | 2012-08-02 11:10:31 -0400 | [diff] [blame] | 61 | include::database-setup.txt[] |
Shawn O. Pearce | 0b91a63 | 2009-02-06 12:53:59 -0800 | [diff] [blame] | 62 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 63 | [[init]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 64 | == Initialize the Site |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 65 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 66 | Gerrit stores configuration files, the server's SSH keys, and the |
| 67 | managed Git repositories under a local directory, typically referred |
| 68 | to as `'$site_path'`. If the embedded H2 database is being used, |
| 69 | its data files will also be stored under this directory. |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 70 | |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 71 | You also have to decide where to store your server side git repositories. This |
| 72 | can either be a relative path under `'$site_path'` or an absolute path |
| 73 | anywhere on your server system. You have to choose a place before commencing |
| 74 | your init phase. |
| 75 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 76 | Initialize a new site directory by running the init command, passing |
| 77 | the path of the site directory to be created as an argument to the |
| 78 | '-d' option. Its recommended that Gerrit Code Review be given its |
| 79 | own user account on the host system: |
| 80 | |
| 81 | ---- |
| 82 | sudo adduser gerrit2 |
| 83 | sudo su gerrit2 |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 84 | |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 85 | java -jar gerrit.war init -d /path/to/your/gerrit_application_directory |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 86 | ---- |
| 87 | |
Michael Ochmann | 8129ece | 2016-07-08 11:25:25 +0200 | [diff] [blame] | 88 | [NOTE] |
| 89 | If you choose a location where your new user doesn't |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 90 | have any privileges, you may have to manually create the directory first and |
| 91 | then give ownership of that location to the `'gerrit2'` user. |
| 92 | |
| 93 | If run from an interactive terminal, the init command will prompt through a |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 94 | series of configuration questions, including gathering information |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 95 | about the database created above. If the terminal is not interactive, |
| 96 | running the init command will choose some reasonable default selections, |
| 97 | and will use the embedded H2 database. Once the init phase is complete, |
| 98 | you can review your settings in the file `'$site_path/etc/gerrit.config'`. |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 99 | |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 100 | When running the init command, additional JARs might be downloaded to |
| 101 | support optional selected functionality. If a download fails a URL will |
| 102 | be displayed and init will wait for the user to manually download the JAR |
| 103 | and store it in the target location. |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 104 | |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 105 | When the init phase is complete, the daemon will be automatically started |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 106 | in the background and your web browser will open to the site: |
| 107 | |
| 108 | ---- |
| 109 | Initialized /home/gerrit2/review_site |
| 110 | Executing /home/gerrit2/review_site/bin/gerrit.sh start |
| 111 | Starting Gerrit Code Review: OK |
| 112 | Waiting for server to start ... OK |
| 113 | Opening browser ... |
| 114 | ---- |
| 115 | |
| 116 | When the browser opens, sign in to Gerrit through the web interface. |
| 117 | The first user to sign-in and register an account will be |
| 118 | automatically placed into the fully privileged Administrators group, |
| 119 | permitting server management over the web and over SSH. Subsequent |
| 120 | users will be automatically registered as unprivileged users. |
| 121 | |
| 122 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 123 | == Installation Complete |
Fredrik Luthander | 833aa74 | 2011-10-27 21:07:46 +0200 | [diff] [blame] | 124 | |
| 125 | Your base Gerrit server is now installed and running. You're now ready to |
| 126 | either set up more projects or start working with the projects you've already |
| 127 | imported. |
| 128 | |
| 129 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 130 | [[project_setup]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 131 | == Project Setup |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 132 | |
Stefan Lay | 08ba473 | 2014-05-05 16:36:12 +0200 | [diff] [blame] | 133 | See link:project-configuration.html[Project Configuration] for further details on |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 134 | how to register a new project with Gerrit. This step is necessary |
| 135 | if existing Git repositories were not imported during 'init'. |
| 136 | |
| 137 | |
Karsten Dambekalns | a7f72a2 | 2011-03-25 14:21:59 +0100 | [diff] [blame] | 138 | [[rc_d]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 139 | == Start/Stop Daemon |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 140 | |
| 141 | To control the Gerrit Code Review daemon that is running in the |
| 142 | background, use the rc.d style start script created by 'init': |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 143 | |
Michael Ochmann | b99feab | 2016-07-06 14:10:22 +0200 | [diff] [blame] | 144 | ---- |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 145 | review_site/bin/gerrit.sh start |
| 146 | review_site/bin/gerrit.sh stop |
| 147 | review_site/bin/gerrit.sh restart |
Michael Ochmann | b99feab | 2016-07-06 14:10:22 +0200 | [diff] [blame] | 148 | ---- |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 149 | |
David Pursehouse | 626f8b5 | 2013-10-24 13:10:56 +0900 | [diff] [blame] | 150 | ('Optional') Configure the daemon to automatically start and stop |
| 151 | with the operating system. |
| 152 | |
| 153 | Uncomment the following 3 lines in the `'$site_path/bin/gerrit.sh'` |
| 154 | script: |
| 155 | |
Michael Ochmann | b99feab | 2016-07-06 14:10:22 +0200 | [diff] [blame] | 156 | ---- |
David Pursehouse | 626f8b5 | 2013-10-24 13:10:56 +0900 | [diff] [blame] | 157 | chkconfig: 3 99 99 |
| 158 | description: Gerrit Code Review |
| 159 | processname: gerrit |
Michael Ochmann | b99feab | 2016-07-06 14:10:22 +0200 | [diff] [blame] | 160 | ---- |
David Pursehouse | 626f8b5 | 2013-10-24 13:10:56 +0900 | [diff] [blame] | 161 | |
| 162 | Then link the `gerrit.sh` script into `rc3.d`: |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 163 | |
Michael Ochmann | b99feab | 2016-07-06 14:10:22 +0200 | [diff] [blame] | 164 | ---- |
Kyle Laker | 839edfc | 2013-03-08 01:05:10 -0500 | [diff] [blame] | 165 | sudo ln -snf `pwd`/review_site/bin/gerrit.sh /etc/init.d/gerrit |
| 166 | sudo ln -snf /etc/init.d/gerrit /etc/rc3.d/S90gerrit |
Michael Ochmann | b99feab | 2016-07-06 14:10:22 +0200 | [diff] [blame] | 167 | ---- |
Shawn O. Pearce | 86816ee | 2009-05-13 17:37:20 -0700 | [diff] [blame] | 168 | |
David Pursehouse | be28499 | 2013-09-26 14:43:33 +0900 | [diff] [blame] | 169 | ('Optional') To enable autocompletion of the gerrit.sh commands, install |
| 170 | autocompletion from the `/contrib/bash_completion` script. Refer to the |
| 171 | script's header comments for installation instructions. |
| 172 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 173 | To install Gerrit into an existing servlet container instead of using |
| 174 | the embedded Jetty server, see |
| 175 | link:install-j2ee.html[J2EE installation]. |
Shawn O. Pearce | 86816ee | 2009-05-13 17:37:20 -0700 | [diff] [blame] | 176 | |
Rafal Klys | 6c454be | 2016-01-12 00:08:29 +0100 | [diff] [blame] | 177 | [[installation_on_windows]] |
| 178 | == Installation on Windows |
| 179 | |
Gert van Dijk | 47b0ed3 | 2018-01-12 10:03:52 +0100 | [diff] [blame] | 180 | The `ssh-keygen` command must be available during the init phase to |
| 181 | generate SSH host keys. If you have |
Rafal Klys | 6c454be | 2016-01-12 00:08:29 +0100 | [diff] [blame] | 182 | link:https://git-for-windows.github.io/[Git for Windows] installed, |
| 183 | start Command Prompt and temporary add directory with ssh-keygen to the |
| 184 | PATH environment variable just before running init command: |
| 185 | |
| 186 | ==== |
| 187 | PATH=%PATH%;c:\Program Files\Git\usr\bin |
| 188 | ==== |
| 189 | |
| 190 | Please note that the path in the above example must not be |
| 191 | double-quoted. |
| 192 | |
| 193 | To run the daemon after site initialization execute: |
| 194 | |
| 195 | ==== |
| 196 | cd C:\MY\GERRIT\SITE |
| 197 | java.exe -jar bin\gerrit.war daemon --console-log |
| 198 | ==== |
| 199 | |
| 200 | To stop the daemon press Ctrl+C. |
| 201 | |
| 202 | === Install the daemon as Windows Service |
| 203 | |
| 204 | To install Gerrit as Windows Service use the |
| 205 | link:http://commons.apache.org/proper/commons-daemon/procrun.html[Apache |
| 206 | Commons Daemon Procrun]. |
| 207 | |
| 208 | Sample install command: |
| 209 | |
| 210 | ==== |
| 211 | prunsrv.exe //IS//Gerrit --DisplayName="Gerrit Code Review" --Startup=auto ^ |
| 212 | --Jvm="C:\Program Files\Java\jre1.8.0_65\bin\server\jvm.dll" ^ |
| 213 | --Classpath=C:\MY\GERRIT\SITE\bin\gerrit.war ^ |
| 214 | --LogPath=C:\MY\GERRIT\SITE\logs ^ |
| 215 | --StartPath=C:\MY\GERRIT\SITE ^ |
| 216 | --StartMode=jvm --StopMode=jvm ^ |
| 217 | --StartClass=com.google.gerrit.launcher.GerritLauncher --StartMethod=daemonStart ^ |
| 218 | --StopClass=com.google.gerrit.launcher.GerritLauncher --StopMethod=daemonStop ^ |
| 219 | ++DependsOn=postgresql-x64-9.4 |
| 220 | ==== |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 221 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 222 | [[customize]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 223 | == Site Customization |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 224 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 225 | Gerrit Code Review supports some site-specific customization options. |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 226 | For more information, see the related topics in this manual: |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 227 | |
Francois Marier | d550b46 | 2011-04-13 14:30:20 +1200 | [diff] [blame] | 228 | * link:config-reverseproxy.html[Reverse Proxy] |
Shawn O. Pearce | f384b44 | 2009-01-10 16:20:56 -0800 | [diff] [blame] | 229 | * link:config-sso.html[Single Sign-On Systems] |
Dave Borowitz | 1e49e14 | 2013-04-09 12:14:57 -0700 | [diff] [blame] | 230 | * link:config-themes.html[Themes] |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 231 | * link:config-gitweb.html[Gitweb Integration] |
Shawn O. Pearce | 7b40571 | 2009-05-08 18:27:53 -0700 | [diff] [blame] | 232 | * link:config-gerrit.html[Other System Settings] |
Sasa Zivkov | e5fc90e | 2013-05-10 15:12:13 +0200 | [diff] [blame] | 233 | * link:config-auto-site-initialization.html[Automatic Site Initialization on Startup] |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 234 | |
Shawn O. Pearce | 0b91a63 | 2009-02-06 12:53:59 -0800 | [diff] [blame] | 235 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 236 | [[anonymous_access]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 237 | == Anonymous Access |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 238 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 239 | Exporting the Git repository directory |
| 240 | (link:config-gerrit.html#gerrit.basePath[gerrit.basePath]) over the |
| 241 | anonymous, unencrypted git:// protocol is more efficient than |
| 242 | Gerrit's internal SSH daemon. See the `git-daemon` documentation |
| 243 | for details on how to configure this if anonymous access is desired. |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 244 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 245 | * http://www.kernel.org/pub/software/scm/git/docs/git-daemon.html[man git-daemon] |
Shawn O. Pearce | b546c9b | 2009-02-24 13:12:39 -0800 | [diff] [blame] | 246 | |
| 247 | |
Martin Fick | 472bb9d | 2012-05-08 16:30:16 -0700 | [diff] [blame] | 248 | [[plugins]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 249 | == Plugins |
Martin Fick | 472bb9d | 2012-05-08 16:30:16 -0700 | [diff] [blame] | 250 | |
| 251 | Place Gerrit plugins in the review_site/plugins directory to have them loaded on Gerrit startup. |
| 252 | |
| 253 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 254 | == External Documentation Links |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 255 | |
Shawn O. Pearce | 9ad8ba5 | 2009-12-11 19:06:21 -0800 | [diff] [blame] | 256 | * http://www.postgresql.org/docs/[PostgreSQL Documentation] |
| 257 | * http://dev.mysql.com/doc/[MySQL Documentation] |
| 258 | * http://www.kernel.org/pub/software/scm/git/docs/git-daemon.html[git-daemon] |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 259 | |
Shawn O. Pearce | 5500e69 | 2009-05-28 15:55:01 -0700 | [diff] [blame] | 260 | |
| 261 | GERRIT |
| 262 | ------ |
| 263 | Part of link:index.html[Gerrit Code Review] |
Yuxuan 'fishy' Wang | 99cb68d | 2013-10-31 17:26:00 -0700 | [diff] [blame] | 264 | |
| 265 | SEARCHBOX |
| 266 | --------- |