introduzione
ISPConfig è un pannello di controllo di hosting per gestire uno o più server Web, server di posta, server DNS BIND, database MySQL e server virtuali attraverso un'interfaccia Web semplice da usare per amministratori, rivenditori e client.
Questo tutorial ti guiderà attraverso l'installazione:
- ISPConfig 3.0.5.4p5
- Apache 2.2
- MySQL 5.1
- PHP 5.3
La seguente guida presuppone un'installazione pulita di CentOS 6 x64 in esecuzione su un VPS Vultr.
Installa i prerequisiti
Innanzitutto, assicurarsi che il sistema sia aggiornato.
yum update
Installa Apache.
yum install httpd mod_ssl
Installa PHP.
yum install php mod_fcgid
Installa MySQL.
yum install mysql mysql-server php-mysql
Sui server di produzione, è necessario proteggere l'installazione di MySQL perché la password predefinita è vuota.
/usr/bin/mysql_secure_installation
Imposta MySQL per l'avvio automatico.
/sbin/chkconfig --levels 235 mysqld on
Avviare MySQL e Apache per assicurarsi che l'installazione abbia avuto esito positivo.
service mysqld start
service httpd start
Installa ISPConfig
Scarica ISPConfig.
wget http://prdownloads.sourceforge.net/ispconfig/ISPConfig-3.0.5.4p5.tar.gz
Estrai l'archivio.
tar -xzf ISPConfig-3.0.5.4p5.tar.gz
Installare.
cd ispconfig3_install/install/
php -q install.php
Impostare
Il programma di installazione ISPConfig ti farà alcune domande.
-
Seleziona la lingua:
English is the default.
-
Modalità di installazione:
Choose standard to follow along with this guide.
-
Inserisci il tuo nome host completo:
Your server's hostname.
-
Nome host del server MySQL:
Leave default.
-
Nome utente root MySQL:
Leave blank unless you secured MySQL previously.
-
Password di root di MySQL:
Leave blank unless you secured MySQL previously.
-
Database MySQL per creare:
Leave default for a standard install.
-
Set di caratteri MySQL:
Default, unless you have a need otherwise.
-
Informazioni sul certificato, possono essere lasciate come predefinite:
Country Name (2 letter code) [XX]:
State or Province Name (full name) []:
Locality Name (eg, city) [Default City]:
Organization Name (eg, company) [Default Company Ltd]:
Organizational Unit Name (eg, section) []:
Common Name (eg, your name or your server's hostname) []:
Email Address []:
-
Porta ISPConfig:
Default is fine.
-
Desideri una connessione sicura (SSL) all'interfaccia web ISPConfig:
Strongly advised to choose "yes". If you choose to use SSL, fill out a second set of certificate information, all of which can be left as defaults.
Note finali
L'installazione è completa e ISPConfig sarà accessibile tramite il browser Web.
- HTTP standard:
http://[SERVER_IP]:8080
- Versione SSL:
https://[SERVER_IP]:8080