博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【CentOS 7MySQL常用操作2】,连接MySQL#180112
阅读量:6305 次
发布时间:2019-06-22

本文共 1778 字,大约阅读时间需要 5 分钟。

hot3.png

hellopasswd


连接MySQL

  • mysql -uroot -p123
  • mysql -uroot -p123 -h127.0.0.1 -P3306
  • mysql -uroot -p123 -S/tmp/mysql.sock
  • mysql -uroot -p123 -e "show databases"

使用本地ip指定端口连接mysql

[root@localhost ~]# /usr/local/mysql/bin/mysql -uroot -p123 -h127.0.0.1 -P3306Warning: Using a password on the command line interface can be insecure.Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 2Server version: 5.6.36 MySQL Community Server (GPL)Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> quitBye

使用socket协议连接mysql

[root@localhost ~]# /usr/local/mysql/bin/mysql -uroot -p123 -S/tmp/mysql.sockWarning: Using a password on the command line interface can be insecure.Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 4Server version: 5.6.36 MySQL Community Server (GPL)Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> quitBye

查看mysql库

[root@localhost ~]# /usr/local/mysql/bin/mysql -uroot -p123 -e "show databases"Warning: Using a password on the command line interface can be insecure.+--------------------+| Database           |+--------------------+| information_schema || mysql              || performance_schema || test               |+--------------------+

用于监控mysql连接数


修改于 180112

转载于:https://my.oschina.net/hellopasswd/blog/1606341

你可能感兴趣的文章
django form 验证
查看>>
python三目表达式
查看>>
取一串数的具体位数
查看>>
nodejs模块——fs模块 文件操作;nodejs文件操作
查看>>
ABP Zero示例项目问题总结
查看>>
XMPP_05_网络编程
查看>>
数码测评网站
查看>>
第四周编程总结
查看>>
UNIX网络编程——I/O复用:select和poll函数
查看>>
linux IPv4报文处理浅析
查看>>
C++11 多线程
查看>>
测试一个域名DNS查询时间的shell脚本
查看>>
程序员学炒股(4) 早晨十字星靠不靠谱
查看>>
java 中断线程的几种方式 interrupt()
查看>>
VBA api创建进度条
查看>>
Rails 添加css javascript 结合easyui
查看>>
MySQL的三层架构之一----连接层
查看>>
DCloud开发资源链接
查看>>
高性能MySQL——创建高性能的索引
查看>>
《算法 4th》---- 每天坚持学算法
查看>>