ServerTutorialVPS

Installare LAMP sul tuo Server, VPS o Server Cloud

LAMP è una combinazione di sistemi operativi e software open source e il nome deriva dalle prime lettere di Linux, Apache HTTP Server, MySQL database e PHP/Perl/Python.

In questo tutorial vedremo come installare LAMP server su RHEL/CentOS/Scientific Linux 6.x.

Installare Apache
per installare Apache digitare il seguente comando sulla shell:

# yum install httpd -y

Avviare il servizio e attivare l’opzione per l’avvio automatico dopo ogni reboot:

# service httpd start
@chkconfig httpd on

Permettere al server Apache di usare la porta 80 per la connessione da sistemi remoti.
Per farlo è necessario editare il file: /etc/sysconfig/iptables

 # vi /etc/sysconfig/iptables

Aggiungendo la seguente stringa:

[…] -A INPUT -p tcp -m state –state NEW -m tcp –dport 80 -j ACCEPT
[…]

Riavviare il servizio.

# service iptables restart

Testare Apache aprendo il browser all’indirizzo http://localhost/

Installare MariaDB (al posto di Mysql)

MariaDB è un database che sostituisce MySQL. E’ stabile, robusto, scalabile e affidabile con molteplici funzioni extra.
Innanzitutto è necessario eliminare eventuali installazioni di MySQL:

# yum remove mysql* mysql-server mysql-devel mysql-libs

Consigliamo di installare REMI Repository per risolvere eventuali problemi di compatibilità di MySQL

# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

Installare compact-mysql55 package now:

# yum –enablerepo=remi-test –disablerepo=remi install compat-mysql55

Create un repository file per MariaDB e aggiungere la seguente stringa:
Per sistemi a 32bit:

# vi /etc/yum.repos.d/mariadb.repo

# MariaDB 5.5 CentOS repository list – created 2013-06-06 07:47 UTC
# http://mariadb.org/mariadb/repositories/
[mariadb] name = MariaDB
baseurl = http://yum.mariadb.org/5.5/centos6-x86
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

Per sistemi a 64bit:

# vi /etc/yum.repos.d/mariadb.repo

#MariaDB 5.5 CentOS repository list – created 2013-06-06 07:53 UTC
# http://mariadb.org/mariadb/repositories/
[mariadb] name = MariaDB
baseurl = http://yum.mariadb.org/5.5/centos6-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

Salvare e uscire dal file. Eseguire il comando di update:

# yum update

Ora iniziare l’installazione di MariaDB:

# yum install MariaDB-devel MariaDB-client MariaDB-server -y

Avviare i servizi MariaDB e configurarli in maniera che partano automaticamente ad ogni avvio del sistema:

# service mysql start
# chkconfig mysql on

Settare la passaword di Root di MySQL. Di default la password di root è vuota, quindi per prevenire accessi non autorizzati bisogna configurare una nuova password.

# /usr/bin/mysql_secure_installation

/usr/bin/mysql_secure_installation: line 379: find_mysql_client: command not found

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we’ll need the current
password for the root user. If you’ve just installed MariaDB, and
you haven’t set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on…

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

You already have a root password set, so you can safely answer ‘n’.

Change the root password? [Y/n] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
… Success!

By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] … Success!

Normally, root should only be allowed to connect from ‘localhost’. This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] … Success!

By default, MariaDB comes with a database named ‘test’ that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] – Dropping test database…
ERROR 1008 (HY000) at line 1: Can’t drop database ‘test’; database doesn’t exist
… Failed! Not critical, keep moving…
– Removing privileges on test database…
… Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] … Success!

Cleaning up…

All done! If you’ve completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

Installare PHP

PHP è un linguaggio di scripting pensato specificatamente per un uso WEB e che può essere incluso dentro l’HTML.
Installare PHP con la stringa:

# yum install php -y

Testare PHP creando una pagina web “test.php” nella cartella di apache:

# vi /var/www/html/test.php

<?php phpinfo(); ?>

Riavviare il servizio:

# service httpd restart

Se volete installare tutte le estensioni e i moduli PHP è necessario inserire il comando:

# yum install php* -y

e riavviare nuovamente il servizio httpd.

Il vostro server LAMP è configurato e pronto a funzionare!

Lascia un commento

Back to top button