|
| 1 | +Installation |
| 2 | +----------- |
| 3 | + |
| 4 | +It is recommended to use a clean (fresh) Ubuntu 7.10 (Gutsy Gibbon) install where you selected no additional packages or servers during setup. Then follow the steps below to setup your server with ISPConfig 3: |
| 5 | + |
| 6 | +Now become root user by executing: |
| 7 | + |
| 8 | +sudo su |
| 9 | + |
| 10 | +and entering the password of the user that you created during setup. |
| 11 | + |
| 12 | +Edit the file /etc/apt/sources.list and comment out the line beginning with "deb cdrom:....", then run: |
| 13 | + |
| 14 | +apt-get update |
| 15 | +apt-get -u upgrade |
| 16 | + |
| 17 | + |
| 18 | +1) Install Postfix, Courier, Saslauthd, MySQL, phpMyAdmin with the following command line (on one line!): |
| 19 | + |
| 20 | +apt-get install postfix postfix-mysql postfix-doc mysql-client mysql-server courier-authdaemon courier-authlib-mysql courier-pop courier-pop-ssl courier-imap courier-imap-ssl postfix-tls libsasl2-2 libsasl2-modules libsasl2-modules-sql sasl2-bin libpam-mysql openssl courier-maildrop getmail4 |
| 21 | + |
| 22 | +Answer the questions from the package manager as follows. |
| 23 | + |
| 24 | +Create directories for web-based administration ? <-- No |
| 25 | +General type of configuration? <-- Internet site |
| 26 | +Mail name? <-- server1.mydomain.tld |
| 27 | + SSL certificate required <-- Ok |
| 28 | + |
| 29 | +...use your own domain name of course ;) |
| 30 | + |
| 31 | +2) Install Amavisd-new, Spamassassin and Clamav (1 line!): |
| 32 | + |
| 33 | +apt-get install amavisd-new spamassassin clamav clamav-daemon zoo unzip bzip2 arj nomarch lzop cabextract apt-listchanges libnet-ldap-perl libauthen-sasl-perl clamav-docs daemon libio-string-perl libio-socket-ssl-perl libnet-ident-perl zip libnet-dns-perl |
| 34 | + |
| 35 | + |
| 36 | +3) Install apache, PHP5 and phpmyadmin (1 line!): |
| 37 | + |
| 38 | +apt-get install apache2 apache2.2-common apache2-doc apache2-mpm-prefork apache2-utils libexpat1 ssl-cert libapache2-mod-php5 php5 php5-common php5-gd php5-mysql php5-imap phpmyadmin php5-cli |
| 39 | + |
| 40 | +Then run the following to enable the Apache modules: |
| 41 | + |
| 42 | +a2enmod suexec |
| 43 | +a2enmod rewrite |
| 44 | +a2enmod ssl |
| 45 | + |
| 46 | +4) Install pure-ftpd and quota |
| 47 | + |
| 48 | +First we have to make sure that the capability module is loaded in the kernel |
| 49 | + |
| 50 | +modprobe capability |
| 51 | +echo 'capability' >> /etc/modules |
| 52 | + |
| 53 | +Then we install pureftpd and quota. |
| 54 | + |
| 55 | +apt-get install pure-ftpd-common pure-ftpd-mysql quota quotatool |
| 56 | + |
| 57 | +echo 'yes' > /etc/pure-ftpd/conf/DontResolve |
| 58 | + |
| 59 | +5) Install mydns |
| 60 | + |
| 61 | +apt-get install g++ libc6 gcc gawk make texinfo libmysqlclient15-dev |
| 62 | + |
| 63 | +cd /tmp |
| 64 | +wget http://mydns.bboy.net/download/mydns-1.1.0.tar.gz |
| 65 | +tar xvfz mydns-1.1.0.tar.gz |
| 66 | +cd mydns-1.1.0 |
| 67 | +./configure |
| 68 | +make |
| 69 | +make install |
| 70 | + |
| 71 | + |
| 72 | +6) Install vlogger and webalizer |
| 73 | + |
| 74 | +apt-get install vlogger webalizer |
| 75 | + |
| 76 | + |
| 77 | +7) Install ISPConfig 3 |
| 78 | + |
| 79 | +There are two possile scenarios, but not both: |
| 80 | +1) Install the latest alpha |
| 81 | +2) Install directly from SVN |
| 82 | + |
| 83 | +apt-get install php5-cli |
| 84 | + |
| 85 | +1) Installation of beta 3 |
| 86 | + |
| 87 | + cd /tmp |
| 88 | + wget http://www.ispconfig.org/downloads/ISPConfig_3.0.0.5-beta.tar.gz |
| 89 | + tar xvfz ISPConfig_3.0.0.5-alpha.tar.gz |
| 90 | + cd ispconfig3_install/install/ |
| 91 | + |
| 92 | +2) Installation from SVN |
| 93 | + |
| 94 | + apt-get install subversion |
| 95 | + cd /tmp |
| 96 | + svn export svn://svn.ispconfig.org/ispconfig3/trunk/ |
| 97 | + cd trunk/install |
| 98 | + |
| 99 | + |
| 100 | +1+2) Now proceed with the ISPConfig installation. |
| 101 | + |
| 102 | +Now start the installation process by executing: |
| 103 | + |
| 104 | +php -q install.php |
| 105 | + |
| 106 | +The installer will configure all services like postfix, sasl, courier, etc. for you. A manual setup as required for ISPConfig 2 (perfect setup guides) is not nescessary. To login to the ISPConfig controlpanel, open the following URL in your browser (replace the IP to match your settings!): |
| 107 | + |
| 108 | +http://192.168.0.100:8080/ |
| 109 | + |
| 110 | +the default login is: |
| 111 | + |
| 112 | +user: admin |
| 113 | +password: admin |
| 114 | + |
| 115 | +In case you get a permission denied error from apache, please restart the apache webserver process. |
0 commit comments