Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Gitlab 6.0 released - Page 2
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Gitlab 6.0 released

2»

Comments

  • Very nice it has a nice interface and everything. Looks like its stable.

  • Threw up a quick 512 OpenVZ with http://bitnami.com/stack/gitlab/ auto installer.
    Works great but pretty much uses all the available ram.

    GitLab is one awesome tool, I can say that much at least from a few minutes of poking around in it. Definitely comparable to some of the big boys like GitHub or Atlassian Stash.

    Thanked by 1jcaleb
  • @WebSearchingPro said:
    Threw up a quick 512 OpenVZ with http://bitnami.com/stack/gitlab/ auto installer.
    Works great but pretty much uses all the available ram.

    GitLab is one awesome tool, I can say that much at least from a few minutes of poking around in it. Definitely comparable to some of the big boys like GitHub or Atlassian Stash.

    That auto-installer, is that just as outdated as the Turnkey one?

  • It says 64bit, I hope there is 32bit

  • @Raymii said:
    That auto-installer, is that just as outdated as the Turnkey one?

    its 6.0 already - bitnami seems to keep up to date with everything they distribute

  • Could anyone tell me what's the command for a full backup of gitlab?

    It was installed with sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production among other commands.

    # sudo -u git -H bundle exec rake RAILS_ENV=production gitlab:backup:create Could not locate Gemfile

  • You should execute that command in the gitlab folder, e.g. /home/git/gitlab.

  • DroidzoneDroidzone Member
    edited November 2013

    Here's a simple script to backup and sync the database:

    #!/usr/bin/bash cd /home/git/gitlab fn=``sudo -u git -H rake RAILS_ENV=production gitlab:backup:create | grep 'Creating backup archive:' | awk '{print $4}'`` scp /home/git/gitlab/tmp/backups/$fn [email protected]:/root/backups/ echo "Backed up file /home/git/gitlab/tmp/backups/$fn to [email protected].."

    Add to cron:
    0 0 */2 * * /bin/bash /root/backupgitlab

Sign In or Register to comment.