Centos6.5使用yum安装mysql——快速上手必备

前端之家收集整理的这篇文章主要介绍了Centos6.5使用yum安装mysql——快速上手必备前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
第1步、yum安装MysqL
[root@stonex ~]# yum -y install MysqL-server
安装结果:
Installed:
MysqL-server.x86_64 0:5.1.73-3.el6_5
Dependency Installed:
MysqL.x86_64 0:5.1.73-3.el6_5 perl-DBD-MysqL.x86_64 0:4.013-3.el6 perl-DBI.x86_64 0:1.609-4.el6

第2步、设置开机启动
[root@stonex ~]# chkconfig MysqLd on

第3步、启动MysqL服务
[root@stonex ~]# service MysqLd start

第4步、设置MysqL的root用户设置密码
[root@stonex ~]# MysqL -u root
Welcome to the MysqL monitor. Commands end with ; or \g.
...... 省略了一些行
MysqL> select user,host,password from MysqL.user;
查询用户的密码,都为空,用下面的命令设置root的密码为root
MysqL> set password for root@localhost=password('root');
MysqL> exit

第5步、用新密码登陆
[root@stonex ~]# MysqL -u root -p

第6步、基本命令
show databases; //查看系统已存在的数据库
use databasesname; //选择需要使用的数据库
drop database databasename; //删除选定的数据库
exit //退出数据库的连接
create database test01; //建立名为test的数据库
show tables; // 列出当前数据库下的表
其他基本的增删改查使用标准sql即可

第7步、开放远程登录权限

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
FLUSH PRIVILEGES;

(完)

原文链接:http://blog.csdn.net/xxd851116/article/details/22947891
原文链接:https://www.f2er.com/centos/381516.html

猜你在找的CentOS相关文章