我已经安装了MySQL,甚至以用户身份登录。
但是,当我尝试这样连接时:
http://localhost:3306
mysql://localhost:3306
两者都不起作用。不确定两者是否应该工作,但至少其中一个应该:)
我怎样才能确保端口确实是3306?是否有linux命令以某种方式看到它?另外,有没有更正确的方法通过网址尝试?
要在端口上查找侦听器,请执行以下操作:
netstat -tln
如果mysql确实正在侦听该端口,您应该看到一条看起来像这样的行。
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
端口3306是MySql的默认端口。
要连接,您只需使用您需要的任何客户端,例如基本的mysql客户端。
mysql -h localhost -u用户数据库
或者是由库代码解释的URL。
对我来说,@ joseluisq的答案产生了:
ERROR 1045(28000):用户'root'@'localhost'拒绝访问(使用密码:NO)
但它的工作方式如下:
$ mysql -u root@localhost -e "SHOW GLOBAL VARIABLES LIKE 'PORT';"
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| port | 3306 |
+---------------+-------+
在mac os X上,有两个选项。 netstat
或lsof
使用netstat
不会在Mac OS X上显示该过程。因此使用netstat只能按端口搜索。
使用lsof
将显示进程名称。
当我遇到端口冲突(docker容器)时,我做了以下操作:
netstat -aln | grep 3306
产出:tcp46 0 0 *.3306 *.* LISTEN
sudo lsof -i -P | grep -i "LISTEN" | grep -i 3306
产出:mysqld 60608 _mysql 31u IPv6 0x2ebc4b8d88d9ec6b 0t0 TCP *:3306 (LISTEN)
我同意@ bortunac的解决方案。 my.cnf是特定于mysql的,而netstat将为您提供所有的监听端口。
也许使用两者,一个用于确认哪个是为mysql设置的端口,另一个用于检查系统是否正在通过该端口进行监听。
我的客户端使用CentOS 6.6,我在/ etc /下找到了my.conf文件,所以我使用了:
grep port /etc/my.conf
(CentOS 6.6)
如果您所在的系统中没有netstat
(例如RHEL 7和更新的Debian版本),您可以使用ss
,如下所示:
sudo ss -tlpn | grep mysql
并且您将获得类似以下内容的输出:
LISTEN 0 50 *:3306 *:* users:(("mysqld",pid=5307,fd=14))
第四栏是Local Address:Port
。所以在这种情况下,Mysql正在侦听端口3306,默认情况下。
使用Mysql客户端:
mysql> SHOW GLOBAL VARIABLES LIKE 'PORT';
grep port /etc/mysql/my.cnf
(至少在debian / ubuntu作品中)
要么
netstat -tlpn | grep mysql
校验
bind-address 127.0.0.1
在/etc/mysql/my.cnf中查看可能的限制
netstat -tlpn
它将显示如下列表:
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1393/sshd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1859/master
tcp 0 0 123.189.192.64:7654 0.0.0.0:* LISTEN 2463/monit
tcp 0 0 127.0.0.1:24135 0.0.0.0:* LISTEN 21450/memcached
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 16781/mysqld
以root身份使用所有详细信息。 -t
选项将输出限制为TCP连接,-l
用于监听端口,-p
列出程序名称,-n
显示端口的数字版本而不是命名版本。
通过这种方式,您可以看到进程名称和端口。
尝试仅使用-e
(--execute
)选项:
$ mysql -u root -proot -e "SHOW GLOBAL VARIABLES LIKE 'PORT';" (8s 26ms)
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| port | 3306 |
+---------------+-------+
用“用户名”和“密码”替换root
两个网址都不正确 - 应该是
jdbc:mysql://host:port/database
我认为不言而喻,但使用Java连接到数据库需要JDBC驱动程序。你需要MySQL JDBC driver。
也许您可以通过TCP / IP使用套接字进行连接。看看MySQL docs。
见http://dev.mysql.com/doc/refman/5.0/en/connector-j-reference-configuration-properties.html
更新:
我试图telnet到MySQL(telnet ip 3306
),但它不起作用:
http://lists.mysql.com/win32/253
我想这就是你的想法。
一些更简单的方法:如果您只想检查MySQL是否在某个端口上,您可以在终端中使用以下命令。在Mac上测试过。 3306是默认端口。
mysql --host=127.0.0.1 --port=3306
如果您成功登录MySQL shell终端,那就太好了!这是我成功登录时获得的输出。
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9559
Server version: 5.6.21 Homebrew
Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
3306是mysql的默认端口。检查一下:
netstat -nl|grep 3306
它应该给出这个结果:
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
您可以使用
ps -ef | grep mysql