DEV Community

Guilherme Dakuzaku
Guilherme Dakuzaku

Posted on

PHP 7.3 + Nginx no CENTOS 7

Passo a passo, simples, sem muito bla bla bla sobre a instalação do PHP 7.3 no CentOS 7.

  1. Instale o CentOS 7 ou peça para o Suporte

  2. Validar versão do CentOS7 (não custa nada)
    cat /etc/os-release

  3. instale o repositorio extra do Linux e o gerenciador de repositorio
    yum install epel-release yum-utils

  4. Instale o repositorio remi-release-7
    yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm

  5. Ative o remi-php73
    sudo yum-config-manager --enable remi-php73

  6. Instale os pacotes inicias do php 7.3
    sudo yum install php php-common php-opcache php-mcrypt php-cli php-gd php-curl php-mysqlnd

  7. Valide a instalção
    php -v

  8. Instale o PHP FPM, ative e inicie.

sudo yum install php-fpm
sudo systemctl enable php-fpm
sudo systemctl start php-fpm
Enter fullscreen mode Exit fullscreen mode

Comentário: systemctl enable é para habilitar a inicialização automática depois de um restart do servidor.

  1. (opcional) no meu projeto ainda faltou esses pacotes do PHP para instalar.
    yum install php-mbstring php-xml

  2. Instale o nginx, ative e inicie.

sudo yum install nginx
sudo systemctl enable nginx
sudo systemctl start nginx
Enter fullscreen mode Exit fullscreen mode

Sem complicar muito, porque programar já é complicado de mais.

Top comments (0)