TuGordoBello
TuGordoBello

Reputation: 4509

SQLSTATE[HY000] [2005] Unknown MySQL server host ' ' (2) in Laravel

Hi I am making a simple login in laravel and I get an error when I try to perform an authentication. It is a rather odd connection error

enter image description here

Conection

'mysql' => array(
        'driver'    => 'mysql',
        'host'      => 'Marsur',
        'database'  => 'database',
        'username'  => 'root',
        'password'  => 'root',
        'charset'   => 'utf8',
        'collation' => 'utf8_unicode_ci',
        'prefix'    => '',
        'options'   => array(
            PDO::ATTR_PERSISTENT => true,
        ),
    ),

Controller

public function doLogin(){
    $rules = array('correo' => 'required|email',
                    'password' => 'required');

    $validator = Validator::make(Input::all(), $rules);
    if($validator->fails()){
        return Redirect::to('usuario')
                ->withErrors($validator)// manda los errores al login
                ->withInput(Input::except('password')); //

    }else{
        $userData = array(
                    'Correo' => Input::get('correo'),
                    'Contrasena' => Input::get('password')
                    );

        if(Auth::attempt($userData)){
            echo 'bien';
        }else{
            return Redirect::to('login');
        }
    }
}

Model*

class Usuario extends Eloquent{
protected $table = 'Usuario';
protected $primaryKey = 'idUsuario';
protected $fillable = array('Nombre', 
                        'Apellido', 
                        'TipoUsuario', 
                        'Contrasena', 
                        'Correo', 
                        'Telefono');
}

how can I fix it?

Upvotes: 0

Views: 7966

Answers (1)

Niet the Dark Absol
Niet the Dark Absol

Reputation: 324620

Marsur is almost certainly not a valid hostname.

Generally a hostname is an IP address, or localhost. On some occasions you may refer to a remote server by its hostname, but in such a case it will have a name that looks like a web address.

So... fix that. If your database is on the same physical machine as the rest of your code, then you need localhost.

Upvotes: 1

Related Questions