This commit is contained in:
Zhang Huangbin 2018-09-12 16:58:20 +08:00
parent d1b507b70a
commit f049024e41
6 changed files with 24 additions and 16 deletions

View File

@ -212,8 +212,8 @@ Note: The path in `alias` directive is different on different Linux/BSD distribu
Please replace it by:
```
location ~ ^/iredadmin/static/(.*) { # Remove file types
alias /var/www/iredadmin/static/$1; # Remove '.$2'
location ~ ^/iredadmin/static/(.*) {
alias /var/www/iredadmin/static/$1;
}
```

View File

@ -40,9 +40,10 @@ cp /root/sogo-backup/sogo/* /etc/sogo/
cp /root/sogo-backup/sysconfig/sogo /etc/sysconfig/
```
* Restart SOGo service:
* Restart SOGo and memcached services:
```
service memcached restart
service sogod restart
```
@ -90,9 +91,10 @@ cp /root/sogo-backup/default/sogo /etc/default/
chown sogo:sogo /var/log/sogo/sogo.log
```
* Restart SOGo service:
* Restart SOGo and memcached services:
```
service memcached restart
service sogo restart
```

View File

@ -55,9 +55,10 @@ yum update 'sogo*' 'sope*'
```bash /usr/share/doc/sogo-4.*/sql-update-3.2.10_to_4.0.0.sh```
* Restart SOGo service:
* Restart SOGo and memcached services:
```
service memcached restart
service sogod restart
```
@ -106,9 +107,10 @@ apt-get install --only-upgrade sogo sogo-activesync
```bash /usr/share/doc/sogo/sql-update-3.2.10_to_4.0.0.sh```
* Restart SOGo service:
* Restart SOGo and memcached services:
```
service memcached restart
service sogo restart
```

View File

@ -253,8 +253,8 @@ hard-codes static file types like below:</p>
<p>Note: The path in <code>alias</code> directive is different on different Linux/BSD distributions.</p>
<p>Please replace it by:</p>
<pre><code>location ~ ^/iredadmin/static/(.*) { # Remove file types
alias /var/www/iredadmin/static/$1; # Remove '.$2'
<pre><code>location ~ ^/iredadmin/static/(.*) {
alias /var/www/iredadmin/static/$1;
}
</code></pre>

View File

@ -61,9 +61,10 @@ cp /root/sogo-backup/sysconfig/sogo /etc/sysconfig/
</code></pre>
<ul>
<li>Restart SOGo service:</li>
<li>Restart SOGo and memcached services:</li>
</ul>
<pre><code>service sogod restart
<pre><code>service memcached restart
service sogod restart
</code></pre>
<h2 id="upgrade-sogo-on-debianubuntu">Upgrade SOGo On Debian/Ubuntu</h2>
@ -116,9 +117,10 @@ cp /root/sogo-backup/default/sogo /etc/default/
</code></pre>
<ul>
<li>Restart SOGo service:</li>
<li>Restart SOGo and memcached services:</li>
</ul>
<pre><code>service sogo restart
<pre><code>service memcached restart
service sogo restart
</code></pre>
<h2 id="troubleshooting">Troubleshooting</h2>

View File

@ -81,10 +81,11 @@ yum update 'sogo*' 'sope*'
<p><code>bash /usr/share/doc/sogo-4.*/sql-update-3.2.10_to_4.0.0.sh</code></p>
</li>
<li>
<p>Restart SOGo service:</p>
<p>Restart SOGo and memcached services:</p>
</li>
</ul>
<pre><code>service sogod restart
<pre><code>service memcached restart
service sogod restart
</code></pre>
<h2 id="upgrade-sogo-on-debianubuntu">Upgrade SOGo On Debian/Ubuntu</h2>
@ -133,10 +134,11 @@ apt-get install --only-upgrade sogo sogo-activesync
<p><code>bash /usr/share/doc/sogo/sql-update-3.2.10_to_4.0.0.sh</code></p>
</li>
<li>
<p>Restart SOGo service:</p>
<p>Restart SOGo and memcached services:</p>
</li>
</ul>
<pre><code>service sogo restart
<pre><code>service memcached restart
service sogo restart
</code></pre>
<h2 id="upgrade-sogo-on-freebsd">Upgrade SOGo On FreeBSD</h2>