Skip to content
Snippets Groups Projects
Commit ddc57ece authored by Achilleas Pipinellis's avatar Achilleas Pipinellis
Browse files

Create uploads dir otherwise backup fails. Fix #4304

parent b1bdd829
No related branches found
No related tags found
1 merge request!4323Create uploads dir otherwise backup fails. Fix #4304
Loading
Loading
@@ -52,17 +52,26 @@ sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production
### 6. Update Init script
 
```bash
cd /home/git/gitlab
sudo rm /etc/init.d/gitlab
sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-2-stable/lib/support/init.d/gitlab
sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab
sudo chmod +x /etc/init.d/gitlab
```
 
### 6. Start application
### 7. Create uploads directory
```bash
cd /home/git/gitlab
sudo -u git -H mkdir public/uploads
sudo chmod -R u+rwX public/uploads
```
### 8. Start application
 
sudo service gitlab start
sudo service nginx restart
 
### 7. Check application status
### 9. Check application status
 
Check if GitLab and its environment are configured correctly:
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment