ondravirag
New Member
Hello guys,
i have problem with mysql remote connect.
On remote VPS with mysql in my.cnf have:
In users in phpmyadmin mysql have special user:
And still not working.
If i try from VPS:
Output is:
if try:
Output is:
On server with MYSQL cmd:
Output is:
On server with MYSQL cmd: s
Output is:
Thanks, it is way ?
i have problem with mysql remote connect.
On remote VPS with mysql in my.cnf have:
Code:
bind-address = 0.0.0.0 and #skip-networking.
Code:
remote@%
If i try from VPS:
Code:
nmap -p 3306 remote_mysql.ip.com
PORT STATE SERVICE
3306/tcp filtered mysql
if try:
Code:
mysql -u remote -h remote_mysql.ip.com -p
ERROR 2002 (HY000): Can't connect to MySQL server on 'remote_mysql.ip.com' (115)
On server with MYSQL cmd:
Code:
netstat -pnlt|grep mysql
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 5246/mysqld
On server with MYSQL cmd: s
Code:
udo lsof -i -P -n | grep LISTEN
sshd 798 root 3u IPv4 16467 0t0 TCP *:22 (LISTEN)
sshd 798 root 4u IPv6 16469 0t0 TCP *:22 (LISTEN)
checkstat 802 root 7u IPv4 15190 0t0 TCP *:44086 (LISTEN)
sendmail 888 root 4u IPv4 16568 0t0 TCP 127.0.0.1:25 (LISTEN)
nginx 4870 root 6u IPv4 31245 0t0 TCP *:4084 (LISTEN)
nginx 4870 root 7u IPv4 31246 0t0 TCP *:4085 (LISTEN)
nginx 4870 root 8u IPv4 31247 0t0 TCP *:4082 (LISTEN)
nginx 4870 root 9u IPv4 31248 0t0 TCP *:4083 (LISTEN)
nginx 4871 emps 6u IPv4 31245 0t0 TCP *:4084 (LISTEN)
nginx 4871 emps 7u IPv4 31246 0t0 TCP *:4085 (LISTEN)
nginx 4871 emps 8u IPv4 31247 0t0 TCP *:4082 (LISTEN)
nginx 4871 emps 9u IPv4 31248 0t0 TCP *:4083 (LISTEN)
mysqld 5246 mysql 11u IPv4 28242 0t0 TCP *:3306 (LISTEN)
Thanks, it is way ?