Upgrade/iRedAdmin-Pro/LDAP/1.4.0-1.4.1
From iRedMail
(Difference between revisions)
(Created page with '__TOC__ * Release notes of iRedAdmin-Pro-1.4.0: Release.Notes/iRedAdmin-Pro/LDAP/1.4.0 * Any questions please post in our forum: http://www.iredmail.org/forum/ '''v1.4.1 is…') |
|||
| (7 intermediate revisions not shown) | |||
| Line 1: | Line 1: | ||
__TOC__ | __TOC__ | ||
| - | * | + | * [[Release.Notes/iRedAdmin-Pro/LDAP/1.4.1 |Release notes of iRedAdmin-Pro-1.4.1]] |
* Any questions please post in our forum: http://www.iredmail.org/forum/ | * Any questions please post in our forum: http://www.iredmail.org/forum/ | ||
| - | '''v1.4.1 is a bugfix release.''' | + | |
| + | '''If you need to upgrade iRedAdmin-Pro-LDAP-1.3.0 from v1.4.1 directly, here's upgrade tutorial: [[Upgrade/iRedAdmin-Pro/LDAP/1.3.0-1.4.0]].''' | ||
| + | |||
| + | = Summary = | ||
| + | v1.4.1 is a bugfix release, all you need to upgrade from v1.4.0 are: | ||
| + | |||
| + | * Extract v1.4.1 source tarball. | ||
| + | * Copy config file from '''v1.4.0'''. | ||
| + | * Set correct file permission. | ||
| + | * Restart Apache. | ||
| + | |||
| + | = Upgrade steps = | ||
| + | Here are steps used to upgrade iRedAdmin-Pro-LDAP-1.4.1 from v1.4.0: | ||
| + | |||
| + | * Download iRedAdmin-Pro-LDAP-1.4.1 source tarball. (You should already received an email with download link, if you didn't get one, please mail to "support@ iredmail.org" directly.) | ||
| + | * Copy or upload iRedAdmin-Pro-LDAP-1.4.1 to your server which has iRedAdmin-Pro-LDAP-'''1.4.0''' running. We assume you copy it to '''/root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2'''. | ||
| + | |||
| + | * Exact v1.4.1 source tarball, copy config file from old version '''v1.4.0''' directly, and set correct file permission: | ||
| + | {{cmd|<pre> | ||
| + | # | ||
| + | # ---- For RHEL/CentOS ---- | ||
| + | # | ||
| + | # tar xjf /root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2 -C /var/www/ | ||
| + | # cd /var/www/ | ||
| + | # cp iRedAdmin-Pro-LDAP-1.4.0/settings.ini iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # rm -i iredadmin # <- This is a symbol link. | ||
| + | # ln -s iRedAdmin-Pro-LDAP-1.4.1 iredadmin # <- Create new symbol link. | ||
| + | # chown -R iredadmin iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # chmod -R 0755 iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # chmod 0700 iRedAdmin-Pro-LDAP-1.4.1/settings.ini | ||
| + | |||
| + | # | ||
| + | # ---- For Debian/Ubuntu ---- | ||
| + | # | ||
| + | # tar xjf /root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2 -C /usr/share/apache2/ | ||
| + | # cd /usr/share/apache2/ | ||
| + | # cp iRedAdmin-Pro-LDAP-1.4.0/settings.ini iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # rm -i iredadmin # <- This is a symbol link. | ||
| + | # ln -s iRedAdmin-Pro-LDAP-1.4.1 iredadmin # <- Create new symbol link. | ||
| + | # chown -R iredadmin iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # chmod -R 0755 iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # chmod 0700 iRedAdmin-Pro-LDAP-1.4.1/settings.ini | ||
| + | |||
| + | # | ||
| + | # ---- For OpenSuSE ---- | ||
| + | # | ||
| + | # tar xjf /root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2 -C /srv/www/ | ||
| + | # cd /srv/www/ | ||
| + | # cp iRedAdmin-Pro-LDAP-1.4.0/settings.ini iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # rm -i iredadmin # <- This is a symbol link. | ||
| + | # ln -s iRedAdmin-Pro-LDAP-1.4.1 iredadmin # <- Create new symbol link. | ||
| + | # chown -R iredadmin iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # chmod -R 0755 iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # chmod 0700 iRedAdmin-Pro-LDAP-1.4.1/settings.ini | ||
| + | |||
| + | # | ||
| + | # ---- For FreeBSD ---- | ||
| + | # | ||
| + | # tar xjf /root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2 -C /usr/local/www/ | ||
| + | # cd /usr/local/www/ | ||
| + | # cp iRedAdmin-Pro-LDAP-1.4.0/settings.ini iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # rm -i iredadmin # <- This is a symbol link. | ||
| + | # ln -s iRedAdmin-Pro-LDAP-1.4.1 iredadmin # <- Create new symbol link. | ||
| + | # chown -R iredadmin iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # chmod -R 0755 iRedAdmin-Pro-LDAP-1.4.1/ | ||
| + | # chmod 0700 iRedAdmin-Pro-LDAP-1.4.1/settings.ini | ||
| + | </pre>}} | ||
| + | |||
| + | * Restart Apache web server. | ||
| + | {{cmd|<pre> | ||
| + | # | ||
| + | # ---- For RHEL/CentOS ---- | ||
| + | # | ||
| + | # /etc/init.d/httpd restart | ||
| + | |||
| + | # | ||
| + | # ---- For Debian/Ubuntu ---- | ||
| + | # | ||
| + | # /etc/init.d/apache2 restart | ||
| + | |||
| + | # | ||
| + | # ---- For OpenSuSE ---- | ||
| + | # | ||
| + | # /etc/init.d/apache2 restart | ||
| + | |||
| + | # | ||
| + | # ---- For FreeBSD ---- | ||
| + | # | ||
| + | # /usr/local/etc/rc.d/apache22 restart | ||
| + | </pre>}} | ||
| + | |||
| + | That's all, you can now access iRedAdmin-Pro-LDAP-1.4.1 with your favorite web browser. | ||
Current revision as of 03:29, 4 March 2011
Contents |
- Release notes of iRedAdmin-Pro-1.4.1
- Any questions please post in our forum: http://www.iredmail.org/forum/
If you need to upgrade iRedAdmin-Pro-LDAP-1.3.0 from v1.4.1 directly, here's upgrade tutorial: Upgrade/iRedAdmin-Pro/LDAP/1.3.0-1.4.0.
Summary
v1.4.1 is a bugfix release, all you need to upgrade from v1.4.0 are:
- Extract v1.4.1 source tarball.
- Copy config file from v1.4.0.
- Set correct file permission.
- Restart Apache.
Upgrade steps
Here are steps used to upgrade iRedAdmin-Pro-LDAP-1.4.1 from v1.4.0:
- Download iRedAdmin-Pro-LDAP-1.4.1 source tarball. (You should already received an email with download link, if you didn't get one, please mail to "support@ iredmail.org" directly.)
- Copy or upload iRedAdmin-Pro-LDAP-1.4.1 to your server which has iRedAdmin-Pro-LDAP-1.4.0 running. We assume you copy it to /root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2.
- Exact v1.4.1 source tarball, copy config file from old version v1.4.0 directly, and set correct file permission:
| Terminal: |
# # ---- For RHEL/CentOS ---- # # tar xjf /root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2 -C /var/www/ # cd /var/www/ # cp iRedAdmin-Pro-LDAP-1.4.0/settings.ini iRedAdmin-Pro-LDAP-1.4.1/ # rm -i iredadmin # <- This is a symbol link. # ln -s iRedAdmin-Pro-LDAP-1.4.1 iredadmin # <- Create new symbol link. # chown -R iredadmin iRedAdmin-Pro-LDAP-1.4.1/ # chmod -R 0755 iRedAdmin-Pro-LDAP-1.4.1/ # chmod 0700 iRedAdmin-Pro-LDAP-1.4.1/settings.ini # # ---- For Debian/Ubuntu ---- # # tar xjf /root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2 -C /usr/share/apache2/ # cd /usr/share/apache2/ # cp iRedAdmin-Pro-LDAP-1.4.0/settings.ini iRedAdmin-Pro-LDAP-1.4.1/ # rm -i iredadmin # <- This is a symbol link. # ln -s iRedAdmin-Pro-LDAP-1.4.1 iredadmin # <- Create new symbol link. # chown -R iredadmin iRedAdmin-Pro-LDAP-1.4.1/ # chmod -R 0755 iRedAdmin-Pro-LDAP-1.4.1/ # chmod 0700 iRedAdmin-Pro-LDAP-1.4.1/settings.ini # # ---- For OpenSuSE ---- # # tar xjf /root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2 -C /srv/www/ # cd /srv/www/ # cp iRedAdmin-Pro-LDAP-1.4.0/settings.ini iRedAdmin-Pro-LDAP-1.4.1/ # rm -i iredadmin # <- This is a symbol link. # ln -s iRedAdmin-Pro-LDAP-1.4.1 iredadmin # <- Create new symbol link. # chown -R iredadmin iRedAdmin-Pro-LDAP-1.4.1/ # chmod -R 0755 iRedAdmin-Pro-LDAP-1.4.1/ # chmod 0700 iRedAdmin-Pro-LDAP-1.4.1/settings.ini # # ---- For FreeBSD ---- # # tar xjf /root/iRedAdmin-Pro-LDAP-1.4.1.tar.bz2 -C /usr/local/www/ # cd /usr/local/www/ # cp iRedAdmin-Pro-LDAP-1.4.0/settings.ini iRedAdmin-Pro-LDAP-1.4.1/ # rm -i iredadmin # <- This is a symbol link. # ln -s iRedAdmin-Pro-LDAP-1.4.1 iredadmin # <- Create new symbol link. # chown -R iredadmin iRedAdmin-Pro-LDAP-1.4.1/ # chmod -R 0755 iRedAdmin-Pro-LDAP-1.4.1/ # chmod 0700 iRedAdmin-Pro-LDAP-1.4.1/settings.ini |
- Restart Apache web server.
| Terminal: |
# # ---- For RHEL/CentOS ---- # # /etc/init.d/httpd restart # # ---- For Debian/Ubuntu ---- # # /etc/init.d/apache2 restart # # ---- For OpenSuSE ---- # # /etc/init.d/apache2 restart # # ---- For FreeBSD ---- # # /usr/local/etc/rc.d/apache22 restart |
That's all, you can now access iRedAdmin-Pro-LDAP-1.4.1 with your favorite web browser.
