① mysql一直連不上了是什麼原因啊,linux上,php連不到資料庫
您好,程序中用到了PDO對象, 連接mysql 5. 在PHP的默認設置中,只打開了php_pdo 模塊, 沒有打開php_pdo_mysql模塊.所以才會出現找不到驅動程序的錯誤.
如果在linux下面,確信模塊pdo_mysql.so已經編譯進php。
在php.ini下面添加:
extension=pdo_mysql.so
具體的解決方案,請參考: Linux中安裝PHP的PDO MySQL擴展的詳細解決方案 http://www.flybi.net/article/70
② linux mysql 遠程無法連接ERROR 2003 (HY000): Can't '127.0.0.1' (111) linux
如果加入-h參數是需要通過防火牆的
vi /etc/sysconfig/iptables
寫入以下內容:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
保存後重啟iptables
service iptables restart
或直接關掉 防火牆 service iptables stop
如果可以連接mysql,說明是防火牆!
my.ini 是不指 linux下的my.cnf文件 是的
③ 遠程連接linux上的mysql,出現如下信息「[1045] Access denied. Bad username/password pair」
沒有開啟對該賬號的遠程登錄點的IP許可.
在資料庫里添加賬號時,@後面的%是允許所有IP,如果需要限制IP地址把%換成你的IP就可以
如果是追加許可權,可以不加後面的identified by "password"部分
1新建賬號,全許可
grant all on testdb.* to test@% identified by "password"
2新建賬號,限制IP許可
grant all on testdb.* to [email protected] identified by "password"
3現有賬號追加許可
grant all on testdb.* to test@%