Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
Nächste ÜberarbeitungBeide Seiten der Revision
centos:mail_c7:pfadmin_1 [23.10.2015 18:39. ] – [vorbereitende Konfiguration] djangocentos:mail_c7:pfadmin_1 [23.10.2015 21:02. ] – [vorbereitende Konfiguration] django
Zeile 21: Zeile 21:
    # chown root.apache /var/www/postfixadmin-2.93/ -R    # chown root.apache /var/www/postfixadmin-2.93/ -R
  
-===== vorbereitende Konfiguration =====+===== Installation/Upgrade Informationen ===== 
 +==== Installations-Dokument ====
 Wichtige Informationen zur Installation finden wir in der Datei **INSTALL.TXT**. Wichtige Informationen zur Installation finden wir in der Datei **INSTALL.TXT**.
-  # less /var/www/postfixadmin-*/INSTALL.TXT+   # less /var/www/postfixadmin-*/INSTALL.TXT
  
 <file /var/www/postfixadmin-*/INSTALL.TXT># <file /var/www/postfixadmin-*/INSTALL.TXT>#
Zeile 203: Zeile 204:
 </file> </file>
  
 +==== Upgrade-Dokument ====
 +Wichtige Informationen zum Upgrade einer vorhandenen Installation finden wir in der Datei **UPGRADE.txt**.
 +   # less /var/www/postfixadmin-*/DOCUMENTS/UPGRADE.txt
 +  
 +<file /var/www/postfixadmin-*/DOCUMENTS/UPGRADE.txt>#
 +# Postfix Admin
 +# by Mischa Peters <mischa at high5 dot net>
 +# Copyright (c) 2002 - 2005 High5!
 +# Licensed under GPL for more info check GPL-LICENSE.TXT
 +#
 +
 +REQUIRED!!
 +----------
 +- You are using Postfix 2.0 or higher.
 +- You are using Apache 1.3.27 / Lighttpd 1.3.15 or higher.
 +- You are using PHP 5.1.2 or higher.
 +- You are using MySQL 3.23 or higher OR PostgreSQL v7.4+
 +
 +
 +READ THIS FIRST!
 +----------------
 +
 +This document describes upgrading from an older PostfixAdmin version
 +(>= v1.5x)
 +
 +It's recommend that you install Postfix Admin in a new folder and not
 +on-top of the old install!! (At the very least, make sure you have backups of 
 +the database and relevant filesystem!)
 +
 +When upgrading Postfix Admin, make sure you backup your database before
 +running upgrade.php.
 +
 +
 +1. Backup the Database
 +----------------------
 +When you install from a previous version make sure you backup your database
 +first. There are a lot of changes in the database structure since Postfix Admin
 +1.5.4.
 +
 +  $ mysqldump -a -u root -p > /tmp/postfixadmin-backup.sql
 +or
 +  $ pg_dump -ad -u postfix postfix > /tmp/postfixadmin-backup.sql
 +
 +
 +2. Unarchive new Postfix Admin
 +------------------------------
 +Make sure that you are in your WWW directory and then unarchive the
 +Postfix Admin archive (whatever the filename is):
 +
 +  $ tar -zxvf postfixadmin-X.X.tgz
 +
 +
 +3. Change permissions
 +----------------------
 +Since the database password is stored in the config.inc.php it's a good idea
 +to have change the permissions for Postfix Admin.
 +
 +  $ cd /usr/local/www/postfixadmin
 +  $ find -type f -print0 | xargs -0 chmod 640
 +  $ find -type f -print0 | xargs -0 chown root:www
 +
 +(the last command assumes your Apache is running with group "www")
 +
 +Since version 2.4 we use smarty templates. That means the templates_c directory
 +needs to be writeable for your webserver.
 +
 +  $ chown -R www-data templates_c/
 +
 +(if your Apache runs as user "www-data")
 +
 +
 +4. Configure
 +------------
 +Check the config.inc.php file. There you can specify settings that are
 +relevant to your setup.
 +
 +Comparing config.inc.php with your previous using "diff" might save you some
 +time.
 +
 +You can use a config.local.php file to contain your local settings. These will override any 
 +defined in config.inc.php - and save some time when upgrading to a new version of PostfixAdmin ;-)
 +
 +5. Run setup.php
 +----------------------------------------
 +
 +Access setup.php through a web browser.
 +
 +It will attempt to upgrade your database, and also allow you to create a superadmin user.
 +(In case the database upgrade fails, you can run setup.php?debug=1 to see the last executed query.)
 +
 +From version 2.3, you need to specify a setup_password in config.inc.php - 
 +setup.php should guide you through this process. If you do not have a setup_password, type one
 +into the form, and setup.php will echo out the hashed value (which needs to go into config.inc.php).
 +The setup_password removes the requirement for you to delete setup.php, and also closes a security hole.
 +
 +Since version 2.2 of Postfixadmin, setup.php can perform the needed database 
 +updates automatically .
 +
 +If you update from 2.1 or older, also create a superadmin account using setup.php.
 +
 +Note that admin/ has been merged into the main directory. Login with the
 +superadmin account to setup domains and domain admins.
 +
 +6. Upgrade your postfix config
 +------------------------------
 +
 +Since version 2.3, PostfixAdmin supports alias domains ($CONF['alias_domain']).
 +If you want to use them, you have to add some queries to your postfix config -
 +see POSTFIX_CONF for details.
 +
 +
 +7. Done
 +-------
 +This is all that is needed. Fire up your browser and go to the site that you
 +specified to host Postfix Admin.
 +
 +</file>
 ==== mySQL Datenbank und -user anlegen ==== ==== mySQL Datenbank und -user anlegen ====
 Wie Eingangs erwähnt, nutzen wir für die Verwaltung unserer Maildomänen und deren Nutzerkonten sowie Aliasen eine [[centos:mysql|mySQL-Datenbank]].  Wie Eingangs erwähnt, nutzen wir für die Verwaltung unserer Maildomänen und deren Nutzerkonten sowie Aliasen eine [[centos:mysql|mySQL-Datenbank]]. 
  • centos/mail_c7/pfadmin_1.txt
  • Zuletzt geändert: 22.07.2019 15:11.
  • von 127.0.0.1