[mysqld]
skip-grant-tables
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
service mysql restart
mysql -uroot -p (直接点击回车,密码为空)
use mysql
mysql>update user set password=password("*******") where user="*******" #修改密码报错
ERROR 1054 (42S22): Unknown column 'password' in 'field list'
mysql>update mysql.user set authentication_string=password('*******') where user='*******' #修改密码成功
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 1
mysql>flush privileges #立即生效
Query OK, 0 rows affected (0.00 sec)
Stopping MySQL: [ OK ]
Starting MySQL: [ OK ]
修改mysql数据库的用户名和密码
更改密码
1、mysql -u root -p
2、Enter password:***
3、mysql>use mysql #选择数据库
4、Database changed
5、mysql>UPDATE user SET password=PASSWORD("新密码") WHERE user='你的用户名'
6、mysql>FLUSH PRIVILEGES
7、mysql>quit
更改用户名:
1、mysql -u root -p
2、Enter password:***
3、mysql>use mysql #选择数据库
4、Database changed
5、mysql>update user set user="新用户名" where user="root"#将用户名为root的改为新用户名
6、mysql>flush privileges#刷新权限
7、mysql> exit
扩展资料:
mysql常用命令:
安装(基于centos)
yum -y install mariadb mariadb-server #centos7版本
yum -y install mysql mysql-server #centos7以下版本
启动
service mysqld start #开启 centos7以下版本
chkconfig mysqld on #设置开机自启
OR
systemctl start mariadb #centos7
systemctl enable mariadb
设置密码
1 、mysqladmin -u root -p123 password '1234' #修改root用户密码
2、进入mysql库修改user表
mysql>use mysql
mysql>update user set password=password('你的密码') where user='root'
mysql>flush privileges
登录
mysql #本地登录,默认用户root,空密码,用户为root@127.0.0.1
mysql -uroot -p1234 #本地登录,指定用户名和密码,用户为root@127.0.0.1
mysql -uroot P端口号 -h 192.168.31.95 -p密码 #远程登录,用户为root@192.168.31.95
查看
ps aux |grep mysqld #查看进程
netstat -an |grep 3306 #查看端口
.登陆mysql或者mariadb(两种任选其一)[root@localhost ~]# mysql -u root
[root@localhost ~]# mysql -uroot -p
2.切换到存储用户名和密码的数据库
MariaDB [mysql]>use mysql回车,会显示以下内容
Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A
Database changed
3.修改密码,适用password()函数进行加密,实际上就是执行sql语句来更新指定用户的密码
MariaDB [mysql]>update user set password=password('新密码') where user='要更新密码的用户名'回车
->
Query OK, 0 rows affected (0.00 sec)
Rows matched: 5 Changed: 0 Warnings: 0
4.刷新用户权限列表
MariaDB [mysql]>flush privileges回车
Query OK, 0 rows affected (0.00 sec)
5.退出mysql登陆
MariaDB [mysql]>quit
Bye
6.重启mysql或者mariadb服务
[root@localhost ~]# service mysqld restart(重启mysql)
[root@localhost ~]# service mariadb restart(重启mariadb)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)