PHP y los paquetes relacionados son los componentes más utilizados al implementar un servidor web. En este artículo, aprenderemos cómo configurar PHP 7.2 en Ubuntu 18.04 LTS.
Prerrequisitos
- Una instancia de servidor Ubuntu 18.04 actualizada.
- Un usuario de sudo.
Actualizar Ubuntu 18.04
Primero, actualice la lista de paquetes:
sudo apt-get update -y
A continuación, instale las actualizaciones:
sudo apt-get upgrade -y
Crea tu usuario de sudo
Ubuntu se entrega con sudo
instalado, por lo que el primer paso será simplemente agregar un nuevo usuario:
adduser <username>
Se le pedirá que establezca información sobre este usuario:
Enter the new value, or press ENTER for the default
Full Name []: Test User
Room Number []: 01
Work Phone []: 5555555
Home Phone []: 5555555
Other []:
Puede completar estos campos o presionar ENTERpara dejarlos predeterminados. Después de esto, presione Yy luego ENTERpara verificar que la información sea correcta.
A continuación, agregue el nuevo usuario al sudo
grupo:
usermod -aG sudo <username>
Ahora puede cerrar sesión y volver a iniciar sesión como su nuevo usuario. Para probar que el usuario se agregó correctamente, use el siguiente comando una vez que haya iniciado sesión como nuevo usuario:
ls -la /root
Recibirá el siguiente aviso:
ls: cannot open directory '/root': Permission denied
Cuando agregue el comando anterior sudo
, se le pedirá su contraseña y recibirá una lista del /root
directorio:
sudo ls -la /root
Ahora puede pasar a actualizar Ubuntu.
Instalar un servidor web
Puede usar Apache o Nginx como su servidor web.
Para instalar e iniciar Apache:
sudo apt-get install apache2 -y
sudo systemctl start apache2.service
Para instalar e iniciar Nginx:
sudo apt-get install nginx -y
sudo systemctl start nginx.service
Instalar PHP 7.2
PHP 7.2 está incluido en el repositorio predeterminado de Ubuntu para 18.04. Puede enumerar cada uno de los paquetes PHP 7.2 disponibles con el siguiente comando:
apt-cache pkgnames | grep php7.2
A continuación, instale los paquetes que requiere su aplicación:
sudo apt-get install php -y
sudo apt-get install php-{bcmath,bz2,intl,gd,mbstring,mysql,zip,fpm} -y
Finalmente, reinicie su servidor web para permitir que se ejecute PHP.
Para Apache, use lo siguiente:
systemctl restart apache2.service
Alternativamente, use lo siguiente para Nginx:
systemctl restart nginx.service
Confirm the PHP version:
php -v
The output will resemble the following:
PHP 7.2.10-0ubuntu0.18.04.1 (cli) (built: Sep 13 2018 13:45:02) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.2.10-0ubuntu0.18.04.1, Copyright (c) 1999-2018, by Zend Technologies
The main config file of PHP 7.2 will be saved as /etc/php/7.2/fpm/php.ini
. You can use the vi
text editor to modify relevant settings in that file:
sudo vi /etc/php/7.2/fpm/php.ini
Note: Remember to restart Apache or Nginx if you make any changes to that file or any other PHP config files.
You have successfully set up PHP 7.2 on Ubuntu 18.04 to work with either Nginx or Apache. You are now ready to customize your configurations and deploy your apps.