iredmail-doc/html/upgrade.ubuntu.14.04-16.04....

107 lines
4.5 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
2017-08-02 19:22:16 -05:00
<title>Fixes you need after upgrading Ubuntu from 14.04 to 16.04</title>
<link rel="stylesheet" type="text/css" href="./css/markdown.css" />
</head>
<body>
<div id="navigation">
<a href="/index.html" target="_blank">
<img alt="iRedMail web site"
src="./images/logo-iredmail.png"
style="vertical-align: middle; height: 30px;"
/>&nbsp;
<span>iRedMail</span>
</a>
2017-08-02 19:22:16 -05:00
&nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="fixes-you-need-after-upgrading-ubuntu-from-1404-to-1604">Fixes you need after upgrading Ubuntu from 14.04 to 16.04</h1>
<div class="toc">
<ul>
2017-08-02 19:22:16 -05:00
<li><a href="#fixes-you-need-after-upgrading-ubuntu-from-1404-to-1604">Fixes you need after upgrading Ubuntu from 14.04 to 16.04</a><ul>
<li><a href="#apache">Apache</a></li>
<li><a href="#postfix">Postfix</a></li>
<li><a href="#iredapd">iRedAPD</a></li>
<li><a href="#roundcube-webmail">Roundcube webmail</a></li>
<li><a href="#php-optional">PHP [OPTIONAL]</a><ul>
<li><a href="#nginx-and-php-fpm">Nginx and php-fpm</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<h2 id="apache">Apache</h2>
<p>Ubuntu 16.04 ships Apache 2.4, there's no mysql auth module for Apache
available, so you must disable all mysql auth related settings in Apache
config files. For example:</p>
<ul>
<li>/etc/apache2/apache2.conf</li>
<li>/etc/apache2/conf-available/awstats.conf</li>
<li>/etc/apache2/conf-available/cluebringer.conf</li>
</ul>
<h2 id="postfix">Postfix</h2>
<pre><code>postconf -e daemon_directory='/usr/lib/postfix/sbin'
postconf -e shlib_directory='/usr/lib/postfix'
</code></pre>
<ul>
<li>Incorrect <code>daemon_directory</code> causes Postfix cannot start.</li>
<li>Incorrect <code>shlib_directory</code> causes Postfix cannot find pcre/mysql/pgsql/ldap modules.</li>
</ul>
<h2 id="iredapd">iRedAPD</h2>
<p>iRedAPD requires package <code>python-pymysql</code>:</p>
<pre><code>apt -y install python-pymysql
</code></pre>
<h2 id="roundcube-webmail">Roundcube webmail</h2>
<p>Make sure you have settings below in Roundcube config file <code>config/config.inc.php</code>:</p>
<pre><code>// Required if you're running PHP 5.6 or later
$config['imap_conn_options'] = array(
'ssl' =&gt; array(
'verify_peer' =&gt; false,
'verify_peer_name' =&gt; false,
),
);
// Required if you're running PHP 5.6 or later
$config['smtp_conn_options'] = array(
'ssl' =&gt; array(
'verify_peer' =&gt; false,
'verify_peer_name' =&gt; false,
),
);
</code></pre>
<h2 id="php-optional">PHP [OPTIONAL]</h2>
<blockquote>
<p>NOTE: This step is toally optional if you're fine with old PHP release.</p>
</blockquote>
<p>php was not upgraded to 7.0 automatically, have to install them manually:</p>
<pre><code>apt-get install php-json php-gd php-mcrypt php-curl mcrypt php-intl php-xml php-mbstring php-mysql libapache2-mod-php
</code></pre>
<h3 id="nginx-and-php-fpm">Nginx and php-fpm</h3>
<p>If you're running Nginx, you must install package <code>php-fpm</code> too:</p>
<pre><code>apt install php-fpm
</code></pre>
<p>php-fpm daemon socket file is changed:</p>
<ul>
<li>old one: <code>/var/run/php-fpm.socket</code></li>
<li>new one: <code>/var/run/php/php7.0-fpm.sock</code></li>
</ul>
<p>iRedMail hard-codes php-fpm socket file in <code>/etc/nginx/nginx.conf</code> or
<code>/etc/nginx/conf.d/default.conf</code>, you must update them to use new socket file.</p><div class="footer">
<p style="text-align: center; color: grey;">All documents are available in <a href="https://bitbucket.org/zhb/iredmail-docs/src">BitBucket repository</a>, and published under <a href="http://creativecommons.org/licenses/by-nd/3.0/us/" target="_blank">Creative Commons</a> license. You can <a href="https://bitbucket.org/zhb/iredmail-docs/get/tip.tar.bz2">download the latest version</a> for offline reading. If you found something wrong, please do <a href="http://www.iredmail.org/contact.html">contact us</a> to fix it.</p>
</div>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3293801-21', 'auto');
ga('send', 'pageview');
</script>
</body></html>