Created
November 23, 2017 17:26
-
-
Save jcaristy/cedce8e67ce91f4509af75f1f4e35426 to your computer and use it in GitHub Desktop.
[UBUNTU - Instalar LAMP] #ubuntu #linux #LAMP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Deshabilitar el firewall | |
sudo ufw status verbose | |
sudo ufw disable | |
# Instalar Apache | |
sudo apt -get install apache2 | |
# Buscar paquetes actuales de mysql | |
sudo apt-cache search mysql | grep mysql | more | |
# Instalar mysql | |
sudo apt-get install mysql-server-5.5 | |
# Organizar la seguridad | |
sudo mysql_secure_installation | |
# Buscar paquetes actuales de php | |
sudo apt-cache search php | grep php | more | |
# Instalar php | |
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt php5-mysql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment