Skip to content

Instantly share code, notes, and snippets.

@jcaristy
Created November 23, 2017 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcaristy/cedce8e67ce91f4509af75f1f4e35426 to your computer and use it in GitHub Desktop.
Save jcaristy/cedce8e67ce91f4509af75f1f4e35426 to your computer and use it in GitHub Desktop.
[UBUNTU - Instalar LAMP] #ubuntu #linux #LAMP
# 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