标签:stat strong 服务 api接口 tst 连接 mysql nbsp 用户
mysql
-u 用户名
-p 密码
-P 端口号
-h mysql的地址
-s socket
-e 面交互执行mysql命令
例子:
(1)
mysql 只限定在没有设定任何密码时可以本地登录的方式 直接省略了[-uroot -p -s xxxx]
(2) 本地socket连接
mysql -uroot -pxxx
(3) tcpip连接串模式
mysql -uroot -p123 -h 10.0.0.51 -P 3306
注意: 需要加载对应语言程序的api接口驱动
重要 ******************************** 问:你怎么判断自己mysql数据库可以对外提供服务的 答: 1)netstat -lnp|grep 3306 ps -ef | grep mysqld(确定服务是开启的) 2) 通过tcpip的方式测试连接 mysql -uroot -p123 -h 10.0.0.51 -P 3306
标签:stat strong 服务 api接口 tst 连接 mysql nbsp 用户
原文地址:https://www.cnblogs.com/whc6/p/13966033.html