Update installation.md
Line 170(make install) causes permission error. This command should execute with sudo.
This commit is contained in:
parent
42cdd489c1
commit
f6df1eaff5
1 changed files with 3 additions and 3 deletions
|
@ -167,7 +167,7 @@ cd pcre2-10.33
|
||||||
chmod +x configure
|
chmod +x configure
|
||||||
./configure --prefix=/usr --enable-jit
|
./configure --prefix=/usr --enable-jit
|
||||||
make
|
make
|
||||||
make install
|
sudo make install
|
||||||
|
|
||||||
# Download and compile from source
|
# Download and compile from source
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
@ -634,8 +634,8 @@ Gitaly must be running for the next section.
|
||||||
gitlab_path=/home/git/gitlab
|
gitlab_path=/home/git/gitlab
|
||||||
gitaly_path=/home/git/gitaly
|
gitaly_path=/home/git/gitaly
|
||||||
|
|
||||||
sudo -u git -H $gitlab_path/bin/daemon_with_pidfile $gitlab_path/tmp/pids/gitaly.pid \
|
sudo -u git -H sh -c "$gitlab_path/bin/daemon_with_pidfile $gitlab_path/tmp/pids/gitaly.pid \
|
||||||
$gitaly_path/gitaly $gitaly_path/config.toml >> $gitlab_path/log/gitaly.log 2>&1 &
|
$gitaly_path/gitaly $gitaly_path/config.toml >> $gitlab_path/log/gitaly.log 2>&1 &"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Initialize Database and Activate Advanced Features
|
### Initialize Database and Activate Advanced Features
|
||||||
|
|
Loading…
Reference in a new issue