From iRedMail
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Summary
- This installation guide is used to install iRedAdmin-Pro-MySQL on Debian 5.x, Ubuntu 8.x, 9.x, 10.x.
- iRedAdmin-Pro is official web-based admin panel for iRedMail. There're two editions:
- iRedAdmin-Pro-LDAP: works with OpenLDAP backend.
- iRedAdmin-Pro-MySQL: works with MySQL backend.
- Release Notes of iRedAdmin-Pro-MySQL-1.0
System requirements
- iRedMail-0.6.0 and newer versions. Note: addition update is required. We will cover it below.
- Packages:
- Apache, 2.2+. Web server.
- mod_wsgi 2.1+. Apache module used to host Python application which supports the Python WSGI interface.
- Python 2.4+, core programming language. Warning: Python 3.x is not supported yet.
- Web.py, 0.32+. A python-powered web framework.
- MySQLdb. A thread-compatible interface to the popular MySQL database server that provides the Python database API.
Update iRedMail
Addition update is required to use iRedAdmin-Pro-MySQL, please follow links to apply them.
- [This step is required for iRedMail-0.6.1 and earlier versions] Update MySQL database vmail. Required by iRedAdmin-Pro.
| Terminal:
|
$ mysql -u root -p
mysql> USE vmail;
mysql> ALTER TABLE mailbox ADD COLUMN enablesmtpsecured TINYINT(1) NOT NULL DEFAULT '1';
mysql> ALTER TABLE admin ADD COLUMN name VARCHAR(255) DEFAULT '' COLLATE utf8_general_ci;
mysql> ALTER TABLE alias ADD COLUMN name VARCHAR(255) DEFAULT '' COLLATE utf8_general_ci;
mysql> ALTER TABLE domain ADD COLUMN defaultuseraliases TEXT NOT NULL DEFAULT '';
mysql> ALTER TABLE domain ADD COLUMN defaultpasswordscheme VARCHAR(10) NOT NULL DEFAULT '';
|
- Upgrade Dovecot from 1.1.x to 1.2, so that iRedAdmin-Pro can show real-time quota usage.
- If you want to quarnatine SPAM into MySQL, then manage (delete, release) them in iRedAdmin-Pro, below update is required.
Add new system account: iredadmin
We will make iRedAdmin run with Apache web server, but as non-apache, low privilege user: iredadmin.
| Terminal:
|
# useradd -m -s /sbin/nologin -d /home/iredadmin iredadmin
|
Install necessary packages
- Install binary packages as dependences, used for building python modules.
| Terminal:
|
$ sudo apt-get install gcc python-setuptools python-dev \
libldap2-dev libmysqlclient15-dev \
libsasl2-dev libssl-dev \
libapache2-mod-wsgi \
python-mysqldb
|
- Install required python modules.
| Terminal:
|
$ sudo easy_install web.py Jinja2 netifaces DBUtils
|
Download iRedAdmin and configure Apache web server
- Get iRedAdmin:
- If you purchased iRedAdmin-Pro-MySQL, you should already have it. If not, please mail to support@ iredmail.org to get a download link.
- If you didn't purchase iRedAdmin-Pro-MySQL, download iRedAdmin open source edition from download page.
- Copy iRedAdmin to /usr/share/apache2/, set correct file permissions, and create symbol link.
| Terminal:
|
$ sudo tar xjf iRedAdmin-x.y.z.tar.bz2 -C /usr/share/apache2/
$ cd /usr/share/apache2/
$ sudo chown -R iredadmin:iredadmin iRedAdmin-x.y.z
$ sudo chmod -R 0755 iRedAdmin-x.y.z
$ sudo ln -s iRedAdmin-x.y.z iredadmin
|
- Add apache configure file: /etc/apache2/conf.d/iredadmin.conf.
| File: /etc/apache2/conf.d/iredadmin.conf
|
#
# Note: Uncomment below two lines if you want to make iRedAdmin accessable via HTTP.
#
#WSGIScriptAlias /iredadmin /usr/share/apache2/iredadmin/iredadmin.py/
#Alias /iredadmin/static /usr/share/apache2/iredadmin/static/
WSGISocketPrefix /var/run/wsgi
WSGIDaemonProcess iredadmin user=iredadmin threads=15
WSGIProcessGroup iredadmin
AddType text/html .py
<Directory /usr/share/apache2/iredadmin/>
Order deny,allow
Allow from all
</Directory>
|
- Edit /etc/apache2/sites-enabled/default-ssl, make iredadmin accessable via HTTPS. Add below lines before </VirtualHost>:
| File: /etc/apache2/sites-enabled/default-ssl
|
WSGIScriptAlias /iredadmin /usr/share/apache2/iredadmin/iredadmin.py/
Alias /iredadmin/static /usr/share/apache2/iredadmin/static/
|
- Enable mod_wsgi module and restart apache to make it work:
| Terminal:
|
$ sudo a2enmod *wsgi
$ sudo /etc/init.d/apache2 restart
|
Create necessary MySQL database and grant privileges
- Create MySQL database: iredadmin. Used to store sessions, admin operation logs, etc.
| Terminal:
|
$ mysql -uroot -p
mysql> CREATE DATABASE iredadmin DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
mysql> USE iredadmin;
mysql> SOURCE /usr/share/apache2/iredadmin/docs/samples/iredadmin.sql;
|
- Grant privileges to iredadmin user and set password for it.
WARNING: Here we use 'secret_passwd' as password of iredadmin user, please replace it with your own password.
| Terminal:
|
$ mysql -uroot -p
mysql> GRANT SELECT,INSERT,UPDATE,DELETE ON iredadmin.* TO iredadmin@localhost IDENTIFIED BY 'secret_passwd';
mysql> FLUSH PRIVILEGES;
|
Configure iRedAdmin
- Copy example config file, and make it not world-writeable.
| Terminal:
|
$ cd /usr/share/apache2/iredadmin/
$ cp settings.ini.mysql.sample settings.ini
# chown iredadmin:iredadmin settings.ini
# chmod 0600 settings.ini
|
- Edit settings.ini and set correct values.
- NOTE: For more inforamtion, please open settings.ini, it's self-documented.
| File: settings.ini
|
[general]
# General settings ...
[iredadmin]
# Database "iredadmin". required by iRedAdmin.
[vmaildb]
# Database "vmail", stored all mail accounts.
[policyd]
# Database "policyd". Required for policyd integration.
[amavisd]
# Database "amavisd". Required for Amavisd-New integration. includes spam quarantining/releasing.
|
- Restart apache web server.
| Terminal:
|
# /etc/init.d/apache2 restart
|
Troubleshooting
If iRedAdmin doesn't work as expected, you can set debug = True in settings.ini to turn on debug mode, restart apache web server, use your favourite web browser to access it again, create a new forum topic and paste error message in forum topic.
| File: settings.ini
|
[general]
debug = True
|