Difference between revisions of "Gitlab"
(→PostgreSQL) |
(→Initialize Gitlab database) |
||
Line 58: | Line 58: | ||
Initialize database and activate advanced features: | Initialize database and activate advanced features: | ||
$ cd /usr/share/webapps/gitlab | $ cd /usr/share/webapps/gitlab | ||
− | $ sudo -u gitlab bundle exec rake | + | $ sudo -u gitlab bundle exec rake gitlab:setup RAILS_ENV=production |
== Start and test GitLab == | == Start and test GitLab == |
Revision as of 18:44, 31 January 2014
Template:Article summary start Template:Article summary text Template:Article summary heading Template:Article summary wiki Template:Article summary wiki Template:Article summary end Gitlab is a free git repository management application based on Ruby on Rails. It is distributed under the MIT License and its source code can be found on Github. It is a very active project with a monthly release cycle and ideal for businesses that want to keep their code private. Consider it as a self hosted Github but open source. You can try a demo here.
Contents
Installation
Beside installing gitlabAUR package from the AUR, you need to choose between a database backend, if you planning to use it on the same machine as Gitlab:
- Install mariadb and libmariadbclient from the official repositories and start the daemon
- or postgresql and libpqxx. Follow PostgreSQL#Installing_PostgreSQL to set it up and start the daemon.
In order to receive mail notifications, make sure to install a mail server. By default, Archlinux does not ship with one. The recommended mail server is postfix, but you can use others such as SSMTP, msmtp, sendmail, etc.
Configuration
Basic configuration
Open /etc/webapps/gitlab/gitlab.yml
with your favorite editor and edit where needed. The options are pretty straightforward. Make sure to change localhost
to the fully-qualified domain name of your host serving GitLab where necessary.
Database backend
A Database backend will be required before Gitlab can be run. Currently GitLab supports MariaDB and PostgreSQL.
MariaDB
Create the database and do not forget to replace your_password_here
with a real one.
mysql -u root -p
mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production`; mysql> CREATE USER 'gitlab'@'localhost' IDENTIFIED BY 'your_password_here'; mysql> GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'gitlab'@'localhost'; mysql> \q
Try connecting to the new database with the new user:
mysql -u gitlab -p -D gitlabhq_production
PostgreSQL
Login to PostgreSQL and remember to change your_password_here
to a real one:
psql -d template1
template1=# CREATE USER gitlab WITH PASSWORD 'your_password_here'; template1=# CREATE DATABASE gitlabhq_production OWNER gitlab; template1=# \q
Try connecting to the new database with the new user:
psql -d gitlabhq_production
Gitlab assumes that a MySQL backend is going to be used, which means that some additional work will be required compared to the MySQL installation. Copy its template file before configuring it:
cp /usr/share/doc/gitlab/config/database.yml.postgresql /etc/webapps/gitlab/config/database.yml
Open /usr/lib/systemd/system/gitlab.target
in an editor and change all instances of mysql.service
to postgresql.service
Initialize Gitlab database
To configure GitLab database settings, make sure to update username
/password
in /etc/webapps/gitlab/database.yml
.
Initialize database and activate advanced features:
$ cd /usr/share/webapps/gitlab $ sudo -u gitlab bundle exec rake gitlab:setup RAILS_ENV=production
Start and test GitLab
With the following commands we check if the steps we followed so far are configured properly.
$ cd /usr/share/webapps/gitlab $ sudo -u gitlab bundle exec rake gitlab:env:info RAILS_ENV=production $ sudo -u gitlab bundle exec rake gitlab:check RAILS_ENV=production
Example output of gitlab:env:info
System information System: Arch Linux Current User: git Using RVM: yes RVM Version: 1.20.3 Ruby Version: 2.0.0p0 Gem Version: 2.0.0 Bundler Version:1.3.5 Rake Version: 10.0.4 GitLab information Version: 5.2.0.pre Revision: 4353bab Directory: /home/git/gitlab DB Adapter: mysql2 URL: http://gitlab.arch HTTP Clone URL: http://gitlab.arch/some-project.git SSH Clone URL: git@gitlab.arch:some-project.git Using LDAP: no Using Omniauth: no GitLab Shell Version: 1.4.0 Repositories: /home/git/repositories/ Hooks: /home/git/gitlab-shell/hooks/ Git: /usr/bin/git
gitlab:check
will complain about missing initscripts. Don't worry, we will use ArchLinux' systemd to manage server start (which GitLab does not recognize).$ systemctl daemon-reload
After starting the database backend (in this case Mysql), we can start Gitlab with its build-in webserver Unicorn:
$ systemctl start redis mysqld gitlab-sidekiq gitlab-unicorn
To automatically launch GitLab at startup, run:
$ systemctl enable gitlab.target gitlab-sidekiq gitlab-unicorn
Advanced configuration
Web server configuration
If you want to integrate Gitlab into a running web server instead of using its build-in http server Unicorn, then follow these instructions.
Nginx and unicorn
Install nginx from the official repositories.
Run these commands to setup nginx:
ln -s /etc/nginx/sites-available/gitlab /etc/nginx/sites-enabled/gitlab
Edit /etc/nginx/sites-enabled/gitlab
and change YOUR_SERVER_IP and YOUR_SERVER_FQDN to the IP address and fully-qualified domain name of the host serving Gitlab. As you can see nginx needs to access /var/run/gitlab/gitlab.socket
socket file. You have to be able to run sudo -u http ls /var/run/gitlab/gitlab.socket
successfully. Otherwise setup access to the directory:
# chgrp http /var/run/gitlab # chmod u=rwx,g=rx,o= /var/run/gitlab
Restart gitlab.target, resque.service and nginx.
Apache and unicorn
Install apache from the official repositories.
Configure Unicorn
/home/git
for your installation, change the below path accordinglyAs the official installation guide instructs, copy the unicorn configuration file:
# sudo -u git -H cp /home/git/gitlab/config/unicorn.rb.example /home/git/gitlab/config/unicorn.rb
Now edit config/unicorn.rb
and add a listening port by uncommenting the following line:
listen "127.0.0.1:8080"
Create a virtual host for Gitlab
Create a configuration file for Gitlab’s virtual host and insert the lines below adjusted accordingly. For the ssl section see LAMP#SSL. If you do not need it, remove it. Notice that the SSL virtual host needs a specific IP instead of generic. Also if you set a custom port for Unicorn, do not forget to set it at the BalanceMember line.
Enable host and start unicorn
Enable your Gitlab virtual host and reload Apache:
/etc/httpd/conf/httpd.conf
Include /etc/httpd/conf/extra/gitlab.conf
Finally start unicorn:
systemctl start gitlab-unicorn
Useful Tips
Hook into /var
sudo mkdir -m700 /var/log/gitlab /var/tmp/gitlab sudo chown gitlab:gitlab /var/log/gitlab /var/tmp/gitlab sudo -u gitlab -i cd ~/gitlab d=log; mv $d/* /var/$d/gitlab; rm -f $d/.gitkeep; rm -r $d && ln -s /var/$d/gitlab $d d=tmp; mv $d/* /var/$d/gitlab; rm -f $d/.gitkeep; rm -r $d && ln -s /var/$d/gitlab $d
Hidden options
Go to Gitlab's home directory
# cd /home/gitlab/gitlab
and run
# rake -T | grep gitlab
These are the options so far:
rake gitlab:app:backup_create # GITLAB | Create a backup of the gitlab system rake gitlab:app:backup_restore # GITLAB | Restore a previously created backup rake gitlab:app:enable_automerge # GITLAB | Enable auto merge rake gitlab:app:setup # GITLAB | Setup production application rake gitlab:app:status # GITLAB | Check gitlab installation status rake gitlab:gitolite:update_hooks # GITLAB | Rewrite hooks for repos rake gitlab:gitolite:update_keys # GITLAB | Rebuild each key at gitolite config rake gitlab:gitolite:update_repos # GITLAB | Rebuild each project at gitolite config rake gitlab:test # GITLAB | Run both cucumber & rspec
Backup and restore
Create a backup of the gitlab system:
# sudo -u gitlab -H rake RAILS_ENV=production gitlab:backup:create
Restore the previously created backup file /home/gitlab/gitlab/tmp/backups/20130125_11h35_1359131740_gitlab_backup.tar
:
# sudo -u gitlab -H rake RAILS_ENV=production gitlab:backup:restore BACKUP=/home/gitlab/gitlab/tmp/backups/20130125_11h35_1359131740
config/gitlab.yml
. GitLab backup and restore is documented here.Migrate from sqlite to mysql
Get latest code as described in #Update_Gitlab. Save data.
# cd /home/gitlab/gitlab # sudo -u gitlab bundle exec rake db:data:dump RAILS_ENV=production
Follow #Mysql instructions and then setup the database.
# sudo -u gitlab bundle exec rake db:setup RAILS_ENV=production
Finally restore old data.
# sudo -u gitlab bundle exec rake db:data:load RAILS_ENV=production
Running GitLab with rvm
To run gitlab with rvm first you have to set up an rvm:
curl -L https://get.rvm.io | bash -s stable --ruby=1.9.3
For the complete installation you will want to be the final user (e.g. git
) so make sure to switch to this user and activate your rvm:
su - git source "$HOME/.rvm/scripts/rvm"
Then continue with the installation instructions from above. However, the systemd scripts will not work this way, because the environment for the rvm is not activated. The recommendation here is to create to separate shell scripts for puma
and sidekiq
to activate the environment and then start the service:
gitlab.sh
#!/bin/sh source `/home/git/.rvm/bin/rvm 1.9.3 do rvm env --path` RAILS_ENV=production bundle exec puma -C "/home/git/gitlab/config/puma.rb"
sidekiq.sh
#!/bin/sh source `/home/git/.rvm/bin/rvm 1.9.3 do rvm env --path` case $1 in start) bundle exec rake sidekiq:start RAILS_ENV=production ;; stop) bundle exec rake sidekiq:stop RAILS_ENV=production ;; *) echo "Usage $0 {start|stop}" esac
Then modify the above systemd files so they use these scripts. Modify the given lines:
gitlab.service
ExecStart=/home/git/bin/gitlab.sh
sidekiq.service
ExecStart=/home/git/bin/sidekiq.sh start ExecStop=/home/git/bin/sidekiq.sh stop
Troubleshooting
Sometimes things may not work as expected. Be sure to visit the Trouble Shooting Guide.