這篇文章綜合了伺服器遠端連線mysql時出現的問題,分享給大家,一起學習一下。
一、centos下解決遠端連線不上的問題。
1、查看centos 下防火牆是否關閉:
通過進程:ps -aux |grep firewalld
ps -ef |grep firewalld
通過服務:pgrep firewalld
# systemctl status firewalld
關閉防火牆: systemctl stop firewalld
service iptables off
2、遠端連線走的是sshd 服務,是ssh協議,連接埠號碼是22.
查看sshd 服務是否已開啟:
透過進程:ps -aux |grep sshd
透過服務:pgrep sshd
開啟服務: systemctl start sshd
把sshd 服務加入到開機啟動:chkconfig sshd on
3、查看IP地址。
ifconfig
在windows下,cmd視窗裡面,ping一下上面的ip位址,看是否可以ping通。
報錯 怎麼辦?
資料庫連線不上?出現下面的問題?
Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock ? ? ?
怎麼辦?
先查看/etc/rc.d/init.d/mysqld status 看看mysql是否已經啟動.
如果是權限問題,則先改變權限#chown -R mysql:mysql /var/lib/mysql
[root@localhost ~]# /etc/init.d/mysqld start
啟動MySQL: [ 確定]
[root@localhost ~]# mysql -uroot -p
10038? (遠端沒有授權)
10060? (加入安全群組)
相關教學:mysql影片教學
二、資料庫操作:
1、開啟mysql。
systemctl start mariadb
2、首先是設定密碼,會提示先輸入密碼
mysql_secure_installation
3、建立普通使用者:
# mysql -u root -p
update user set host='%' where host='127.0.0.1';
flush privileges;
s 4、授權使用者登入:vpriet#privee privlev on *.* to 'root'@'%' identified by '123456' with grant option;
flush privileges;
update user set user='root' where host='localhost'; #相關教學:
mysql影片教學
1、防火牆: 設定防火牆,開機不啟動: chkconfig firewalld chk
關閉防火牆:
systemctl disable firewalld
systemctl stop firewalld
或殺死防火牆的進程。
查看防火牆的進程存在麼:pgrep firewalld,
然後殺死進程:kill pid
或 pkill firewalld
2、沒有遠端權限
授予遠端登入或 pkill firewalld
2、沒有遠端權限##vle on *.* to 'root'@'%' identified by '123456';
flush privileges;
3、開啟sshd服務: systemctl startsshd
# 3、開啟sshd服務: systemctl startsshd
# 3、開啟sshd服務 將啟動:sshd 服務 將chkconfig sshd on
四、在windows 訪問Linux下的項目
開啟Linux中Apache服務,即httpd服務systemctl start httpd或:service httpd start
五、Windows下設定虛擬網域方法:
設定本機hosts 文件。
位置:C:\Windows\System32\drivers\etc\hosts
新增 對應虛擬主機名稱即可。
192.168.226.129 linux.cc
mysql的CRUD;
新增:
INSERT INTO `user` (`id`, `username`, `passwd`, `sex`) VALUES ('1', 'zhangsan', '12345', '')
更新:
UPDATE `user` SET `sex`='女' WHERE (`id`='2')
刪除:
DELETE FROM `user```` WHERE (`id`='2')
查詢:
SELECT * FROM `user`;
六、虛擬主機
ServerAdmin webmaster @dummy-host.example.com
DocumentRoot /www/docs/dummy-host.example.com
ServerName dummy-host.example.com
ErrorLog Name dummy-host.example.com
host ErrorLog logs/dummy-hostor.com
CustomLog logs/dummy-host.example.com-access_log common
七、設定開機啟動:預設圖形化介面切換為命令列模式## 修改 指令模式multi-user.target:
[root@localhost ~]# systemctl set-default multi-user.target
rm '/etc/systemd/system/default.target'
ln -s ' ln -s ' ln -s ' /usr/lib/systemd/system/multi-user.target' '/etc/systemd/system/default.target'
[root@localhost ~]# systemctl get-default
得到:multi-user. target:達到效果。
在切換為:圖形化模式:systemctl set-default graphical.target
八、設定檔說明
A: httpd.conf Apache的主設定檔。
B: php.ini PHP的主設定檔
D: httpd-vhost.conf 設定虛擬主機的時候,更改的檔案
E:my.cnf linux下mysql的主設定檔
#注意: Windows下面mysql的主設定檔 my.ini
相關教學:PHP影片教學
以上是伺服器遠端連接mysql時出現的問題綜合的詳細內容。更多資訊請關注PHP中文網其他相關文章!