fedora_安装mysql
- 80%参照该文章 Fedora 20下 MySQL 的安装,linux公社 http://www.linuxidc.com/Linux/2014-02/96392.htm
- 主要的命令 有
- root权限 下载 ,安装,
sudo yum -y install community-mysql-server
会要求输入密码,接下来就是安装了,需要点时间 直到出现 完毕!
- 输入,不需要使用root权限 ,开启mysql服务
systemctl start mysqld.service systemctl enable mysqld.service
- 表示 以root权限进入mysql 因为之前还没有设置密码
mysql -u root
- 成功则出现
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.6.23 MySQL Community Server (GPL) Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
- 查看一下 mysql中里面有什么 ,查看一下里面的数据库(注意mysql 语句 不区分大小写,分好一定是英文半角)
show databases;
- 结果如下
+--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | +--------------------+ 3 rows in set (0.00 sec)
--说明information_schema | | mysql | | performance_schema 这三个数据库是mysql自带的,用户最好不要在这里操作
- 接下来就是想查看一下数据库中用户以及其密码了
select user, host, password from mysql.user;
- 结果如下
+------+-----------------------+-------------------------------------------+ | user | host | password | +------+-----------------------+-------------------------------------------+ | root | localhost | | | root | localhost.localdomain | | | root | 127.0.0.1 | | | root | ::1 | | | | localhost | | | | localhost.localdomain | | +------+-----------------------+-------------------------------------------+ 6 rows in set (0.00 sec)
- 还记得第3步中 通过 mysql -u root 默认进入 mysql的吗?它对应root是第一个 也就是 user:root ;host:localhost
- 下面给这个用户设置密码
set password for root@localhost=password(‘XXXX‘);
其中root@localhost @前面的是 user;@后面的是 host ;你可以把XXXXX换成你的密码
- 其他账户设置类似
- 现在重新登录
mysql -u root -p
输入上述命令后,要求输入对应的密码即可
- root权限 下载 ,安装,
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。