Como conectar o PHP 5.6 ao banco de dados SQL após a compilação

0

Eu instalei o PHP 5.6 a partir do código-fonte no servidor 9 do servidor Debian. A versão do OpenSSL na Debian 9 é muito nova para o PHP 5.6, então eu tive que compilar uma versão mais antiga em / opt / openssl para usá-la com o PHP 5.6. (versão openssl-1.0.1t)

Eu configurei a compilação do PHP5.6 assim:

./configure --prefix=/opt/PHP/php-5.6 --with-pdo-pgsql --with-zlib-dir --with-freetype-dir --enable-mbstring --with-libxml-dir=/usr --enable-soap --enable-calendar --with-curl --with-mcrypt --with-zlib --with-pgsql --disable-rpath --enable-inline-optimization --with-bz2 --with-zlib --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --enable-exif --enable-bcmath --with-mhash --enable-zip --with-pcre-regex --with-pdo-mysql --with-mysqli --with-mysql-sock=/var/run/mysqld/mysqld.sock --with-jpeg-dir=/usr --with-png-dir=/usr --enable-gd-native-ttf --with-openssl=/opt/openssl --with-fpm-user=www-data --with-fpm-group=www-data --with-libdir=/lib/x86_64-linux-gnu --enable-ftp --with-kerberos --with-gettext --with-xmlrpc --with-xsl --enable-opcache --enable-fpm

Eu tenho o PHP5.6 funcionando depois do comando make e make install

Eu escrevi este script PHP para testar a conexão (eu escondi o bom valor também):

    <?php
$servername = "localhost";
$username = "username";
$password = "password";

try {
    $conn = new PDO("mysql:host=$servername;dbname=myDB", $username, $password);
    // set the PDO error mode to exception
    $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    echo "Connected successfully"; 
    }
catch(PDOException $e)
    {
    echo "Connection failed: " . $e->getMessage();
    }
?>

Eu tentei desse jeito e consegui:

 /opt//PHP/php-5.6/bin/php connect_db.php
Connection failed: SQLSTATE[HY000] [2002] No such file or directory

No mesmo servidor, eu compilei o PHP7.1 a partir do código fonte com esta configuração de compilação:

./configure --prefix=/opt/PHP/php-7.1 --with-pdo-pgsql --with-zlib-dir --with-freetype-dir --enable-mbstring --with-libxml-dir=/usr --enable-soap --enable-calendar --with-curl --with-zlib --with-gd --with-pgsql --disable-rpath --enable-inline-optimization --with-bz2 --with-zlib --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --enable-exif --enable-bcmath --with-mhash --enable-zip --with-pcre-regex --with-pdo-mysql --with-mysqli --with-mysql-sock=/var/run/mysqld/mysqld.sock --with-jpeg-dir=/usr --with-png-dir=/usr --with-openssl --with-fpm-user=www-data --with-fpm-group=www-data --with-libdir=/lib/x86_64-linux-gnu --enable-ftp --with-imap --with-imap-ssl --with-kerberos --with-gettext --with-xmlrpc --with-xsl --enable-opcache --enable-fpm

Eu tentei o mesmo script PHP e ele passou bem:

/opt//PHP/php-7.1/bin/php connect_db.php
Connected successfully

Como configurar a compilação do PHP5.6 para obter o mesmo com o componente PHP7.1?

    
por dubis 22.11.2018 / 16:53

1 resposta

0

Eu encontrei se eu substituir a linha do script:

$servername = "localhost";

por este

$servername = "127.0.0.1";

O script se conecta ao banco de dados com PHP5.6 e PHP7.1

 /opt/PHP/php-5.6/bin/php connect_db.php
Connected successfully

Sinta-se à vontade para colocar comentários para confirmar onde o problema pode vir de

    
por 23.11.2018 / 10:31