Install/iRedAdmin-Pro/MySQL/FreeBSD
From iRedMail
(Difference between revisions)
(→System requirements) |
(→Install necessary packages) |
||
| Line 20: | Line 20: | ||
{{cmd|<pre> | {{cmd|<pre> | ||
# bash | # bash | ||
| - | # for p in www/mod_wsgi www/webpy databases/py-dbutils devel/py-Jinja2 databases/py-MySQLdb net/py-netifaces; do cd /usr/ports/${ | + | # for p in www/mod_wsgi www/webpy databases/py-dbutils devel/py-Jinja2 databases/py-MySQLdb net/py-netifaces; do cd /usr/ports/${p} && make install clean; done |
</pre>}} | </pre>}} | ||
Revision as of 05:03, 29 January 2011
Contents |
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.
- Apache, 2.2+. Web server.
Add new system account: iredadmin
We will make iRedAdmin run with Apache web server, but as non-apache, low privilege user: iredadmin.
| Terminal: |
# pw useradd -s /sbin/nologin -d /home/iredadmin -n iredadmin |
Install necessary packages
Install several devel binary packages, used for building python modules.
| Terminal: |
# bash
# for p in www/mod_wsgi www/webpy databases/py-dbutils devel/py-Jinja2 databases/py-MySQLdb net/py-netifaces; do cd /usr/ports/${p} && make install clean; done
|
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/local/www/, set correct file permissions, and create symbol link.
| Terminal: |
# tar xjf iRedAdmin-x.y.z.tar.bz2 -C /usr/local/www/ # cd /usr/local/www/ # chown -R iredadmin:iredadmin iRedAdmin-x.y.z # chmod -R 0755 iRedAdmin-x.y.z # ln -s iRedAdmin-x.y.z iredadmin |
- Add apache configure file: /usr/local/etc/apache22/Includes/iredadmin.conf.
| File: /usr/local/etc/apache22/Includes/iredadmin.conf |
#
# Note: Uncomment below two lines if you want to make iRedAdmin accessable via HTTP.
#
#WSGIScriptAlias /iredadmin /usr/local/www/iredadmin/iredadmin.py/
#Alias /iredadmin/static /usr/local/www/iredadmin/static/
WSGISocketPrefix /var/run/wsgi
WSGIDaemonProcess iredadmin user=iredadmin threads=15
WSGIProcessGroup iredadmin
AddType text/html .py
<Directory /usr/local/www/iredadmin/>
Order deny,allow
Allow from all
</Directory>
|
- Edit /usr/local/etc/apache22/extra/httpd-ssl.conf, make iredadmin accessable via HTTPS. Add below lines before </VirtualHost>:
| File: /usr/local/etc/apache22/extra/httpd-ssl.conf |
WSGIScriptAlias /iredadmin /usr/local/www/iredadmin/iredadmin.py/ Alias /iredadmin/static /usr/local/www/iredadmin/static/ |
- Restart apache to enable mod_wsgi:
| Terminal: |
# /usr/local/etc/rc.d/apache22 restart |
Create necessary MySQL database and grant privileges
Configure iRedAdmin
- Copy example config file, and make it not world-writeable.
| Terminal: |
# cd /usr/local/www/iredadmin/ # cp settings.ini.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: |
# /usr/local/etc/rc.d/apache22 restart |
- Open your web browser to access iRedAdmin: https://your_server_ip_address/iredadmin/
- NOTE: Make sure you use HTTPS:// instead of HTTP://.
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 |
