Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
4116588f
Commit
4116588f
authored
Jun 25, 2014
by
Sytse Sijbrandij
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ruby-update-in-guide' into 'master'
Ruby update in guide Fixes #1371
parents
79ee94ec
313e4966
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
6 deletions
+38
-6
doc/update/6.9-to-7.0.md
doc/update/6.9-to-7.0.md
+38
-6
No files found.
doc/update/6.9-to-7.0.md
View file @
4116588f
...
@@ -13,7 +13,39 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
...
@@ -13,7 +13,39 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
sudo
service gitlab stop
sudo
service gitlab stop
```
```
### 2. Get latest code
### 2. Update Ruby
If you are still using Ruby 1.9.3 or below, you will need to update Ruby.
You can check which version you are running with
`ruby -v`
.
If you are you running Ruby 2.0.x, you do not need to upgrade ruby, but can consider doing so for performance reasons.
If you are running Ruby 2.1.1 consider upgrading to 2.1.2, because of the high memory usage of Ruby 2.1.1.
Install, update dependencies:
```
bash
sudo
apt-get
install
build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl
```
Download and compile Ruby:
```
bash
mkdir
/tmp/ruby
&&
cd
/tmp/ruby
curl
--progress
ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz |
tar
xz
cd
ruby-2.1.2
./configure
--disable-install-rdoc
make
sudo
make
install
```
Install Bundler:
```
bash
sudo
gem
install
bundler
--no-ri
--no-rdoc
```
### 3. Get latest code
```
bash
```
bash
cd
/home/git/gitlab
cd
/home/git/gitlab
...
@@ -34,7 +66,7 @@ For GitLab Enterprise Edition:
...
@@ -34,7 +66,7 @@ For GitLab Enterprise Edition:
sudo
-u
git
-H
git checkout 7-0-stable-ee
sudo
-u
git
-H
git checkout 7-0-stable-ee
```
```
###
3
. Update gitlab-shell (and its config)
###
4
. Update gitlab-shell (and its config)
```
bash
```
bash
cd
/home/git/gitlab-shell
cd
/home/git/gitlab-shell
...
@@ -42,7 +74,7 @@ sudo -u git -H git fetch
...
@@ -42,7 +74,7 @@ sudo -u git -H git fetch
sudo
-u
git
-H
git checkout v1.9.6
sudo
-u
git
-H
git checkout v1.9.6
```
```
###
4
. Install libs, migrations, etc.
###
5
. Install libs, migrations, etc.
```
bash
```
bash
cd
/home/git/gitlab
cd
/home/git/gitlab
...
@@ -64,7 +96,7 @@ sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab
...
@@ -64,7 +96,7 @@ sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab
sudo chmod
+x /etc/init.d/gitlab
sudo chmod
+x /etc/init.d/gitlab
```
```
###
5
. Update config files
###
6
. Update config files
#### New configuration options for gitlab.yml
#### New configuration options for gitlab.yml
...
@@ -74,12 +106,12 @@ There are new configuration options available for gitlab.yml. View them with the
...
@@ -74,12 +106,12 @@ There are new configuration options available for gitlab.yml. View them with the
git diff 6-9-stable:config/gitlab.yml.example 7-0-stable:config/gitlab.yml.example
git diff 6-9-stable:config/gitlab.yml.example 7-0-stable:config/gitlab.yml.example
```
```
###
6
. Start application
###
7
. Start application
sudo service gitlab start
sudo service gitlab start
sudo service nginx restart
sudo service nginx restart
###
7
. Check application status
###
8
. Check application status
Check if GitLab and its environment are configured correctly:
Check if GitLab and its environment are configured correctly:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment