Skip to content
install.php 12.4 KiB
Newer Older
<?php

/*
Copyright (c) 2007, Till Brehm, projektfarm Gmbh
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    * Neither the name of ISPConfig nor the names of its contributors
      may be used to endorse or promote products derived from this software without
      specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/*
	ISPConfig 3 installer.
*/

//** Check for existing installation
tbrehm's avatar
tbrehm committed
//if(is_dir("/usr/local/ispconfig")) die('We will stop here. There is already a ISPConfig installation, use the update script to update this installation.');

error_reporting(E_ALL|E_STRICT);

//** The banner on the command line
echo "\n\n".str_repeat('-',80)."\n";
echo " _____ ___________   _____              __ _       
|_   _/  ___| ___ \ /  __ \            / _(_)      
  | | \ `--.| |_/ / | /  \/ ___  _ __ | |_ _  __ _ 
  | |  `--. \  __/  | |    / _ \| '_ \|  _| |/ _` |
 _| |_/\__/ / |     | \__/\ (_) | | | | | | | (_| |
 \___/\____/\_|      \____/\___/|_| |_|_| |_|\__, |
                                              __/ |
                                             |___/ ";
pedro_morgan's avatar
pedro_morgan committed
echo "\n".str_repeat('-',80)."\n";
echo "\n\n>> Initial configuration  \n\n";
tbrehm's avatar
tbrehm committed

//** Include the library with the basic installer functions
//** Include the base class of the installer class
oliver's avatar
oliver committed
//** Get distribution identifier
$dist = get_distname();
if($dist['id'] == '') die('Linux Dustribution or Version not recognized.');
oliver's avatar
oliver committed
//** Include the distribution specific installer class library and configuration
if(is_file('dist/lib/'.strtolower($dist['name']).'.lib.php')) include_once('dist/lib/'.strtolower($dist['name']).'.lib.php');
include_once('dist/lib/'.$dist['id'].'.lib.php');
include_once('dist/conf/'.$dist['id'].'.conf.php');
oliver's avatar
oliver committed

//** Install logfile
define('ISPC_LOG_FILE', '/var/log/ispconfig_install.log');

//****************************************************************************************************
//** Installer Interface 
//****************************************************************************************************
pedro_morgan's avatar
pedro_morgan committed
swriteln($inst->lng('    Following will be a few questions for primary configuration so be careful.'));
swriteln($inst->lng('    Default values are in [brackets] and can be accepted with <ENTER>.'));
swriteln($inst->lng('    Tap in "quit" (without the quotes) to stop the installer.'."\n\n"));
//** Check log file is writable (probably not root or sudo)
oliver's avatar
oliver committed
if(!is_writable(dirname(ISPC_LOG_FILE))){
    die("ERROR: Cannot write to the directory ".dirname(ISPC_LOG_FILE).". Are you root or sudo ?\n\n");
if(is_dir('/root/ispconfig') || is_dir('/home/admispconfig')) {
	die('This software can not be installed on a server wich runs ISPConfig 2.x.');
}

//** Select the language
$conf['language'] = $inst->simple_query('Select language', array('en','de'), 'en');
//** Select installation mode
$install_mode = $inst->simple_query('Installation mode', array('Standard','Expert'), 'Standard');
tbrehm's avatar
tbrehm committed
$tmp_out = array();
$conf['hostname'] = $inst->free_query('Full qualified hostname (FQDN) of the server, eg foo.example.com ', $tmp_out[0]);
tbrehm's avatar
tbrehm committed
unset($tmp_out);
tbrehm's avatar
tbrehm committed
$finished = false;
do {
	$tmp_mysql_server_host = $inst->free_query('MySQL server hostname', $conf['mysql']['host']);
	$tmp_mysql_server_admin_user = $inst->free_query('MySQL root username', $conf['mysql']['admin_user']);
	$tmp_mysql_server_admin_password = $inst->free_query('MySQL root password', $conf['mysql']['admin_password']);
    $tmp_mysql_server_database = $inst->free_query('MySQL database to create', $conf['mysql']['database']);
tbrehm's avatar
tbrehm committed
	
	//* Initialize the MySQL server connection
tbrehm's avatar
tbrehm committed
	if(@mysql_connect($tmp_mysql_server_host, $tmp_mysql_server_admin_user, $tmp_mysql_server_admin_password)) {
		$conf['mysql']['host'] = $tmp_mysql_server_host;
		$conf['mysql']['admin_user'] = $tmp_mysql_server_admin_user;
		$conf['mysql']['admin_password'] = $tmp_mysql_server_admin_password;
        $conf['mysql']['database'] = $tmp_mysql_server_database;
tbrehm's avatar
tbrehm committed
		$finished = true;
tbrehm's avatar
tbrehm committed
	} else {
		swriteln($inst->lng('Unable to connect to mysql server').' '.mysql_error());
tbrehm's avatar
tbrehm committed
	}
} while ($finished == false);
tbrehm's avatar
tbrehm committed
unset($finished);
tbrehm's avatar
tbrehm committed

// Resolve the IP address of the mysql hostname.
if(!$conf['mysql']['ip'] = gethostbyname($conf['mysql']['host'])) die('Unable to resolve hostname'.$conf['mysql']['host']);


//** initializing database connection
tbrehm's avatar
tbrehm committed
include_once('lib/mysql.lib.php');
$inst->db = new db();
tbrehm's avatar
tbrehm committed

//** Begin with standard or expert installation
tbrehm's avatar
tbrehm committed
if($install_mode == 'Standard') {
	
tbrehm's avatar
tbrehm committed
	$inst->configure_database();
	
	//* Insert the Server record into the database
	$inst->add_database_server_record();
tbrehm's avatar
tbrehm committed

tbrehm's avatar
tbrehm committed
	$inst->configure_postfix();
	
	//* Configure postfix
	swriteln('Configuring Jailkit');
	$inst->configure_jailkit();
tbrehm's avatar
tbrehm committed

tbrehm's avatar
tbrehm committed
	swriteln('Configuring SASL');
	$inst->configure_saslauthd();

tbrehm's avatar
tbrehm committed
	swriteln('Configuring PAM');
	$inst->configure_pam();

tbrehm's avatar
tbrehm committed
	swriteln('Configuring Courier');
	$inst->configure_courier();

tbrehm's avatar
tbrehm committed
	swriteln('Configuring Spamassassin');
	$inst->configure_spamassassin();

tbrehm's avatar
tbrehm committed
	swriteln('Configuring Amavisd');
	$inst->configure_amavis();

tbrehm's avatar
tbrehm committed
	swriteln('Configuring Getmail');
	$inst->configure_getmail();
	

tbrehm's avatar
tbrehm committed
	swriteln('Configuring Pureftpd');
	$inst->configure_pureftpd();

tbrehm's avatar
tbrehm committed
	swriteln('Configuring MyDNS');
	$inst->configure_mydns();
	swriteln('Configuring Apache');
	$inst->configure_apache();
	
	//* Configure Firewall
	swriteln('Configuring Firewall');
	$inst->configure_firewall();
tbrehm's avatar
tbrehm committed

tbrehm's avatar
tbrehm committed
	swriteln('Installing ISPConfig');
daniel's avatar
daniel committed
	
	//** Customise the port ISPConfig runs on
	$conf['apache']['vhost_port'] = $inst->free_query('ISPConfig Port', '8080');
daniel's avatar
daniel committed

tbrehm's avatar
tbrehm committed
	$inst->install_ispconfig();
tbrehm's avatar
tbrehm committed
	
	//* Configure DBServer
	swriteln('Configuring DBServer');
	$inst->configure_dbserver();
tbrehm's avatar
tbrehm committed

tbrehm's avatar
tbrehm committed
	swriteln('Installing Crontab');
	$inst->install_crontab();
	
	swriteln('Restarting services ...');
oliver's avatar
oliver committed
	system($conf['init_scripts'].'/'.$conf['mysql']['init_script'].' restart');
	system($conf['init_scripts'].'/'.$conf['postfix']['init_script'].' restart');
	system($conf['init_scripts'].'/'.$conf['saslauthd']['init_script'].' restart');
	system($conf['init_scripts'].'/'.$conf['amavis']['init_script'].' restart');
	system($conf['init_scripts'].'/'.$conf['clamav']['init_script'].' restart');
	system($conf['init_scripts'].'/'.$conf['courier']['courier-authdaemon'].' restart');
	system($conf['init_scripts'].'/'.$conf['courier']['courier-imap'].' restart');
	system($conf['init_scripts'].'/'.$conf['courier']['courier-imap-ssl'].' restart');
	system($conf['init_scripts'].'/'.$conf['courier']['courier-pop'].' restart');
	system($conf['init_scripts'].'/'.$conf['courier']['courier-pop-ssl'].' restart');
	system($conf['init_scripts'].'/'.$conf['apache']['init_script'].' restart');
	system($conf['init_scripts'].'/'.$conf['pureftpd']['init_script'].' restart');
	system($conf['init_scripts'].'/'.$conf['mydns']['init_script'].' restart &> /dev/null');
tbrehm's avatar
tbrehm committed
	
	// $conf['server_id'] = $inst->free_query('Unique Numeric ID of the server','1');
	// Server ID is an autoInc value of the mysql database now
tbrehm's avatar
tbrehm committed
	
	if(strtolower($inst->simple_query('Create a new database? (We do not want to join a existing ISPConfig server setup)',array('y','n'),'y')) == 'y') {
tbrehm's avatar
tbrehm committed
		$inst->configure_database();
		//system('/etc/init.d/mysql restart');
tbrehm's avatar
tbrehm committed
	}
		
	//* Insert the Server record into the database
tbrehm's avatar
tbrehm committed
	swriteln('Adding ISPConfig server record to database.');
	$inst->add_database_server_record();

tbrehm's avatar
tbrehm committed
	
	if(strtolower($inst->simple_query('Configure Mail', array('y','n') ,'y') ) == 'y') {
tbrehm's avatar
tbrehm committed
		
tbrehm's avatar
tbrehm committed
		swriteln('Configuring Postfix');
		$inst->configure_postfix();
		
tbrehm's avatar
tbrehm committed
		swriteln('Configuring PAM');
		$inst->configure_pam();

tbrehm's avatar
tbrehm committed
		swriteln('Configuring Courier');
		$inst->configure_courier();

tbrehm's avatar
tbrehm committed
		swriteln('Configuring Spamassassin');
		$inst->configure_spamassassin();

tbrehm's avatar
tbrehm committed
		swriteln('Configuring Amavisd');
		$inst->configure_amavis();

tbrehm's avatar
tbrehm committed
		swriteln('Configuring Getmail');
		$inst->configure_getmail();
		
oliver's avatar
oliver committed
		system($conf['init_scripts'].'/'.$conf['postfix']['init_script'].' restart');
		system($conf['init_scripts'].'/'.$conf['saslauthd']['init_script'].' restart');
		system($conf['init_scripts'].'/'.$conf['amavis']['init_script'].' restart');
		system($conf['init_scripts'].'/'.$conf['clamav']['init_script'].' restart');
		system($conf['init_scripts'].'/'.$conf['courier']['courier-authdaemon'].' restart');
		system($conf['init_scripts'].'/'.$conf['courier']['courier-imap'].' restart');
		system($conf['init_scripts'].'/'.$conf['courier']['courier-imap-ssl'].' restart');
		system($conf['init_scripts'].'/'.$conf['courier']['courier-pop'].' restart');
		system($conf['init_scripts'].'/'.$conf['courier']['courier-pop-ssl'].' restart');
	//** Configure Pureftpd
	if(strtolower($inst->simple_query('Configure FTP Server', array('y','n'),'y') ) == 'y') {	
tbrehm's avatar
tbrehm committed
		swriteln('Configuring Pureftpd');
		$inst->configure_pureftpd();
oliver's avatar
oliver committed
		system($conf['init_scripts'].'/'.$conf['pureftpd']['init_script'].' restart');
tbrehm's avatar
tbrehm committed
	if(strtolower($inst->simple_query('Configure DNS Server',array('y','n'),'y')) == 'y') {
		swriteln('Configuring MyDNS');
		$inst->configure_mydns();
oliver's avatar
oliver committed
		system($conf['init_scripts'].'/'.$conf['mydns']['init_script'].' restart');
	//** Configure Apache
	if(strtolower($inst->simple_query('Configure Apache Server',array('y','n'),'y')) == 'y') {	
		swriteln('Configuring Apache');
		$inst->configure_apache();
	}
	
	//** Configure Firewall
	if(strtolower($inst->simple_query('Configure Firewall Server',array('y','n'),'y')) == 'y') {	
		swriteln('Configuring Firewall');
		$inst->configure_firewall();
	}
	
tbrehm's avatar
tbrehm committed
	if(strtolower($inst->simple_query('Install ISPConfig Web-Interface',array('y','n'),'y')) == 'y') {
tbrehm's avatar
tbrehm committed
		swriteln('Installing ISPConfig');
		
		//** We want to check if the server is a module or cgi based php enabled server
tbrehm's avatar
tbrehm committed
		//** TODO: Don't always ask for this somehow ?
		/*
		$fast_cgi = $inst->simple_query('CGI PHP Enabled Server?', array('yes','no'),'no');

		if($fast_cgi == 'yes') {
	 		$alias = $inst->free_query('Script Alias', '/php/');
	 		$path = $inst->free_query('Script Alias Path', '/path/to/cgi/bin');
	 		$conf['apache']['vhost_cgi_alias'] = sprintf('ScriptAlias %s %s', $alias, $path);
	 		$conf['apache']['vhost_cgi_alias'] = "";
tbrehm's avatar
tbrehm committed
		*/

		//** Customise the port ISPConfig runs on
		$conf['apache']['vhost_port'] = $inst->free_query('ISPConfig Port', '8080');
tbrehm's avatar
tbrehm committed
		$inst->install_ispconfig_interface = true;
			
	} else {
		$inst->install_ispconfig_interface = false;
tbrehm's avatar
tbrehm committed
	$inst->install_ispconfig();
tbrehm's avatar
tbrehm committed
	
	//* Configure DBServer
	swriteln('Configuring DBServer');
	$inst->configure_dbserver();
tbrehm's avatar
tbrehm committed
		
	//* Configure ISPConfig
	swriteln('Installing Crontab');
	$inst->install_crontab();
	system($conf['init_scripts'].'/'.$conf['apache']['init_script'].' restart');
	
	
	
} //* << $install_mode / 'Standard' or Genius