Comments on: How to install gitlab on Ubuntu Server 12.04 (precise) the right way http://v3.vanutsteen.nl/2012/07/09/how-to-install-gitlab-on-ubuntu-server-12-04-precise-the-right-way/ A blog on rails, php, computing, my bass guitar and stuff Wed, 17 Oct 2012 04:54:02 +0000 hourly 1 http://wordpress.org/?v=3.5 By: Yann Le Moigne http://v3.vanutsteen.nl/2012/07/09/how-to-install-gitlab-on-ubuntu-server-12-04-precise-the-right-way/comment-page-1/#comment-6039 Yann Le Moigne Wed, 08 Aug 2012 22:36:55 +0000 http://www.vanutsteen.nl/?p=705#comment-6039 For the Step8, you forgot (I used a virtual machine with a fresh installation of ubuntu server)

apt-get install libxslt1-dev libicu-dev

Other note :
Installing ruby 1.9 is not enougth, running :
update-alternatives –set ruby /usr/bin/ruby1.9.1
update-alternatives –set gem /usr/bin/gem1.9.1

can help.

Finally :
to launch resque on server startup, create a file /etc/init/gitlab-resque.conf and adapt the content for your setup :

description “Gitlab resque workers”
start on (local-filesystems and net-device-up IFACE=eth0)
stop on runlevel [016]

respawn
console none

script su -c “/home/gitlab/gitlabhq/resque.sh” gitlab

]]>
By: Yann Le Moigne http://v3.vanutsteen.nl/2012/07/09/how-to-install-gitlab-on-ubuntu-server-12-04-precise-the-right-way/comment-page-1/#comment-6038 Yann Le Moigne Wed, 08 Aug 2012 21:08:53 +0000 http://www.vanutsteen.nl/?p=705#comment-6038 Hi,

Thanks for the documentation, there is some how to, but your seems very “clean” way ;)

I think that there is a typo error at Step 2, ruby-budler doesn’t exist, but ruby-bundler exist.

At Step 3 : ruby2.9.1-dev doesn’t exist.

]]>