Created
January 12, 2012 15:54
-
-
Save premist/1601244 to your computer and use it in GitHub Desktop.
Installing GitLab on CentOS 6.2 (Part 2)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
passwd gitlab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
su gitlab | |
ssh git@localhost | |
su |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl http://python-distribute.org/distribute_setup.py | python | |
easy_install pip | |
pip install pygments | |
gem install bundler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vi /etc/sudoers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem install ruby-debug19 | |
gem install charlock_holmes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
su gitlab | |
cd ~ | |
git clone git://github.com/gitlabhq/gitlabhq.git | |
cd gitlabhq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vi ~/.gemrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bundle install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RAILS_ENV=production rake db:setup | |
RAILS_ENV=production rake db:seed_fu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo system-config-firewall-tui |
leekiangiap,
Thanks for comment. I used these code to my Korean post, so there are no comments.
Alternatively, you may get some information on this article :
http://wasil.org/en/gitlab-installation-on-fedora-16-with-gitolite
I'm also beginner on Linux, but thanks for many comments to my Gist.
I've updated it a little bit and added a few missing things. It can be found at http://dlaxar.blogspot.co.at/2012/06/installing-gitlab-with-gitolite-on.html
dlaxar,
Thank you for great article!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
May I know what should I add or edit after vi /etc/sudoers ?
May I know what should I add or edit after vi ~/.gemrc ?