centos7.3怎么给数据库设置密码
答案:2 悬赏:20 手机版
解决时间 2021-02-15 09:19
- 提问者网友:寂寞撕碎了回忆
- 2021-02-14 23:10
centos7.3怎么给数据库设置密码
最佳答案
- 五星知识达人网友:七十二街
- 2021-02-14 23:28
1.登陆mysql或者mariadb(两种任选其一)
?
1
2
[root@localhost ~]# mysql -u root
[root@localhost ~]# mysql -uroot -p
2.切换到存储用户名和密码的数据库
?
1
2
3
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语句来更新指定用户的密码
?
1
2
3
4
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.刷新用户权限列表
?
1
2
MariaDB [mysql]> flush privileges;回车
Query OK, 0 rows affected (0.00 sec)
5.退出mysql登陆
?
1
2
MariaDB [mysql]> quit
Bye
6.重启mysql或者mariadb服务
?
1
2
[root@localhost ~]# service mysqld restart(重启mysql)
[root@localhost ~]# service mariadb restart(重启mariadb)
?
1
2
[root@localhost ~]# mysql -u root
[root@localhost ~]# mysql -uroot -p
2.切换到存储用户名和密码的数据库
?
1
2
3
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语句来更新指定用户的密码
?
1
2
3
4
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.刷新用户权限列表
?
1
2
MariaDB [mysql]> flush privileges;回车
Query OK, 0 rows affected (0.00 sec)
5.退出mysql登陆
?
1
2
MariaDB [mysql]> quit
Bye
6.重启mysql或者mariadb服务
?
1
2
[root@localhost ~]# service mysqld restart(重启mysql)
[root@localhost ~]# service mariadb restart(重启mariadb)
全部回答
- 1楼网友:詩光轨車
- 2021-02-14 23:45
我不会~~~但还是要微笑~~~:)
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯