博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL基础入门之常用命令使用
阅读量:5132 次
发布时间:2019-06-13

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

如何启动MySql服务

/etc/init.d/mysqld startservice mysqld startCentos 7.x 系统sysctl  start mysqld

检测端口是否运行

lsof -i :3306netstat -lntup |grep 3306

设置或修改MySql密码

设置密码mysql -uroot -ppassword -e "set passowrd for root = passowrd('passowrd')"mysqladmin -uroot passowrd "NEWPASSWORD"更改密码mysqladmin -uroot passowrd oldpassowrd "NEWPASSWORD"use mysql;update user set passowrd = PASSWORD('newpassword') where user = 'root'; flush privileges;msyql 5.7以上版本修改默认密码命令      alter user 'root'@'localhost' identified by 'root'

 

查看当前数据库的字符集

show create database DB_NAME;

查看当前数据库版本

mysql -Vmysql -uroot -ppassowrd -e "use mysql;select version();"

查看当前登录用户

mysql -uroot -ppassowrd -e "select user();"

 

转载于:https://www.cnblogs.com/alter888/p/11130630.html

你可能感兴趣的文章
Vue_(组件通讯)子组件向父组件传值
查看>>
STM32单片机使用注意事项
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>
aboutMe
查看>>
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
下一代操作系统与软件
查看>>
[NOIP2013提高组] CODEVS 3287 火车运输(MST+LCA)
查看>>