Yii2 db; dsn与ip local

i have my localhost configured with and other port, i'm trying to use this in the 'yii\db\Connection'

'dsn' => 'mysql:host=192.168.1.5;dbname=db_empresa_juridico',
'username' => 'db_user_jurid',
'password' => '[removed]',
'charset' => 'utf8',

but Yii2 still loading, don't show nothing how i can connecting to the db? using local ip?

i need to shared my db at lan

Missing the port=3306 in

'dsn' => 'mysql:host=192.168.1.5;dbname=db_empresa_juridico;port=3306',