obrigado por ler a minha pergunta, eu estava trabalhando neste erro desde uma semana lendo perguntas no ServerFault, Stackoverflow e AskUbuntu, mas não consegui descobrir o problema.
Eu tenho
- Lubuntu 16.04 (distribuição do ubuntu)
- Nginx
- Laravel 4.2.17
- MySQL 5.7
Eu tenho um projeto pré-existente que eu clonei do GitHub e tudo está indo bem, mas quando eu vou para uma página que tem que se conectar ao banco de dados (como tentar um login) eu recebi este erro:
PDOException (1045) HELP
SQLSTATE [HY000] [1045] Acesso negado para o usuário 'homestead' @ 'localhost' (usando a senha: YES)
Descrição gráfica do erro
ARQUIVOS ENVOLVEM
Eu tenho um arquivo .env no projeto e o nomeei .env.local.php , este é o arquivo:
<?php
/**
* Variables de entorno .env.php
* Si se requiere cargar otros valores para un entorno diferente al de produccion (local, development, etc.)
* cree un archivo con el nombre asi:
* - local => .env.local.php
* - development => .env.development.php
*/
return [
'DATABASE_NAME' => 'DATABASE_NAME',
'DATABASE_USER' => 'DATABASE_USER',
'DATABASE_PASSWORD' => 'DATABASE_PASSWORD',
/*
* social
* '$RED$_IDENTIFIER' => '',
* '$RED$_SECRET' => '',
* '$RED$_CALLBACK_URI' => '',
*/
'GOOGLE_IDENTIFIER' => 'GOOGLE_IDENTIFIER',
'GOOGLE_SECRET' => 'GOOGLE_SECRET',
'GOOGLE_CALLBACK_URI' => 'GOOGLE_CALLBACK_URI',
'FACEBOOK_IDENTIFIER' => 'FACEBOOK_IDENTIFIER',
'FACEBOOK_SECRET' => 'FACEBOOK_SECRET',
'FACEBOOK_CALLBACK_URI' => 'FACEBOOK_CALLBACK_URI',
/**
* PayU configs
* PAYU_TEST: 1 = Modo prueba, 0 = Modo Produccion
*/
'PAYU_MACRO_ACCOUNT_ID' => 654321,
'PAYU_MICRO_ACCOUNT_ID' => 123456,
'PAYU_MERCHANT_ID' => 123456,
'PAYU_API_KEY' => 'ABCabc123DEFdef456GHIghi78',
'PAYU_API_LOGIN' => '123abc456def789',
'PAYU_TEST' => 1,
];
Eu tenho um arquivo database.php em /var/www/kinbuweb/app/config/local/database.php Eu realço o caminho / config / local que eu tenho lido é o configuração se eu tiver um ambiente local (e eu tinha chamado meu arquivo .env. local .php) o arquivo no caminho:
<?php
return [
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| supported by Laravel is shown below to make development simple.
|
|
| All database work in Laravel is done through the PHP PDO facilities
| so make sure you have the driver for your particular database of
| choice installed on your machine before you begin development.
|
*/
'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'homestead',
'username' => 'homestead',
'password' => 'secret',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
'pgsql' => [
'driver' => 'pgsql',
'host' => 'localhost',
'database' => 'homestead',
'username' => 'homestead',
'password' => 'secret',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
],
],
];
Por outro lado eu tenho um arquivo fora da pasta local (Caminho: / var / www / kinbuweb / app / config) que é chamado database.php também, eu acho que é o geral configuração que tem:
<?php
return [
/*
|--------------------------------------------------------------------------
| PDO Fetch Style
|--------------------------------------------------------------------------
|
| By default, database results will be returned as instances of the PHP
| stdClass object; however, you may desire to retrieve records in an
| array format for simplicity. Here you can tweak the fetch style.
|
*/
'fetch' => PDO::FETCH_CLASS,
/*
|--------------------------------------------------------------------------
| Default Database Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections below you wish
| to use as your default connection for all database work. Of course
| you may use many connections at once using the Database library.
|
*/
'default' => 'mysql',
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| supported by Laravel is shown below to make development simple.
|
|
| All database work in Laravel is done through the PHP PDO facilities
| so make sure you have the driver for your particular database of
| choice installed on your machine before you begin development.
|
*/
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'database' => __DIR__ . '/../database/production.sqlite',
'prefix' => '',
],
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => $_ENV['DATABASE_NAME'],
'username' => $_ENV['DATABASE_USER'],
'password' => $_ENV['DATABASE_PASSWORD'],
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
'pgsql' => [
'driver' => 'pgsql',
'host' => 'localhost',
'database' => 'forge',
'username' => 'forge',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
],
'sqlsrv' => [
'driver' => 'sqlsrv',
'host' => 'localhost',
'database' => 'database',
'username' => 'root',
'password' => '',
'prefix' => '',
],
],
/*
|--------------------------------------------------------------------------
| Migration Repository Table
|--------------------------------------------------------------------------
|
| This table keeps track of all the migrations that have already run for
| your application. Using this information, we can determine which of
| the migrations on disk haven't actually been run in the database.
|
*/
'migrations' => 'migrations',
/*
|--------------------------------------------------------------------------
| Redis Databases
|--------------------------------------------------------------------------
|
| Redis is an open source, fast, and advanced key-value store that also
| provides a richer set of commands than a typical key-value systems
| such as APC or Memcached. Laravel makes it easy to dig right in.
|
*/
'redis' => [
'cluster' => false,
'default' => [
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0,
],
],
];
O que eu tentei
-
Use as credenciais na configuração local (/var/www/kinbuweb/app/config/local/database.php) database.php como esta:
<?php
/**
* Variables de entorno .env.php
* Si se requiere cargar otros valores para un entorno diferente al de produccion (local, development, etc.)
* cree un archivo con el nombre asi:
* - local => .env.local.php
* - development => .env.development.php
*/
return [
'DATABASE_NAME' => 'homestead',
'DATABASE_USER' => 'homestead',
'DATABASE_PASSWORD' => 'secret',
'GOOGLE_IDENTIFIER' => 'GOOGLE_IDENTIFIER',
'GOOGLE_SECRET' => 'GOOGLE_SECRET',
'GOOGLE_CALLBACK_URI' => 'GOOGLE_CALLBACK_URI',
'FACEBOOK_IDENTIFIER' => 'FACEBOOK_IDENTIFIER',
'FACEBOOK_SECRET' => 'FACEBOOK_SECRET',
'FACEBOOK_CALLBACK_URI' => 'FACEBOOK_CALLBACK_URI',
'PAYU_MACRO_ACCOUNT_ID' => 654321,
'PAYU_MICRO_ACCOUNT_ID' => 123456,
'PAYU_MERCHANT_ID' => 123456,
'PAYU_API_KEY' => 'ABCabc123DEFdef456GHIghi78',
'PAYU_API_LOGIN' => '123abc456def789',
'PAYU_TEST' => 1,
];
-
Agregue a porta à configuração do banco de dados na pasta local da seguinte forma:
<?php
return [
'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost:3306',
'database' => 'homestead',
'username' => 'homestead',
'password' => 'secret',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
'pgsql' => [
'driver' => 'pgsql',
'host' => 'localhost',
'database' => 'homestead',
'username' => 'homestead',
'password' => 'secret',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
],
],
];
E enquanto recebo o mesmo erro:
PDOException (1045) HELP
SQLSTATE [HY000] [1045] Acesso negado para o usuário 'homestead' @ 'localhost' (usando a senha: YES)
Alguma idéia com a qual eu poderia resolver isso? Obrigado