SQLSTATE[HY000] [2002] 连接尝试失败.. - 尝试从本地连接到远程服务器时
SQLSTATE[HY000] [2002] A connection attempt failed.. - When attempting to connect from Local to remote server
环境文件:
APP_ENV=local
APP_DEBUG=true
APP_KEY= ...........
DB_HOST=srv3.linuxisrael.co.il
DB_DATABASE= name_of_my_database
DB_USERNAME=moti_winkler
DB_PASSWORD=1234567890
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
Routes.php :
use App\User;
Route::get('/', function(){
User::create(['first_name' => 'moti']);
return view('welcome');
});
我得到的错误:
PDOException in Connector.php line 55:
SQLSTATE[HY000] [2002] A
connection attempt failed because the connected party did not properly
respond after a period of time, or established connection failed
because connected host has failed to respond.
我的问题是:
我正在尝试从我的计算机连接到我的远程 MySQL 服务器
而且我不明白为什么它不起作用?
我应该怎么做才能连接?
我错过了什么?
我正在使用Laravel 5.1
不足为奇。 mysql 套接字很少打开以供 public 面向接口的连接使用。通常 mysql 端口 (3306) 只能从专用网络接口访问。
即使套接字已打开,也会出现很多错误,包括防火墙阻碍和简单的超时。
环境文件:
APP_ENV=local
APP_DEBUG=true
APP_KEY= ...........
DB_HOST=srv3.linuxisrael.co.il
DB_DATABASE= name_of_my_database
DB_USERNAME=moti_winkler
DB_PASSWORD=1234567890
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
Routes.php :
use App\User;
Route::get('/', function(){
User::create(['first_name' => 'moti']);
return view('welcome');
});
我得到的错误:
PDOException in Connector.php line 55:
SQLSTATE[HY000] [2002] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
我的问题是:
我正在尝试从我的计算机连接到我的远程 MySQL 服务器
而且我不明白为什么它不起作用?
我应该怎么做才能连接?
我错过了什么?
我正在使用Laravel 5.1
不足为奇。 mysql 套接字很少打开以供 public 面向接口的连接使用。通常 mysql 端口 (3306) 只能从专用网络接口访问。
即使套接字已打开,也会出现很多错误,包括防火墙阻碍和简单的超时。