首页 > 代码库 > Centos6.5下安装Mysql
Centos6.5下安装Mysql
Mysql安装配置
先来更新系统
[root@localhost ~]# yum -y update
查看已安装的mysql版本
[root@localhost ~]# rpm -qa | grep mysql
删除上一步查询出来的版本,注意更换这里的版本
[root@localhost ~]# rpm -e --nodeps mysql-libs-5.1.73-7.el6.x86_64
通过yum方式安装mysql
[root@localhost ~]# yum install -y mysql-server mysql mysql-deve
开启mysql服务
[root@localhost ~]# service mysqld start
设置mysql开机自启
[root@localhost ~]# chkconfig mysqld on
设置root用户密码
[root@localhost ~]# mysqladmin -u root password ‘YouPassword‘
登陆mysql
[root@localhost ~]# mysql -u root -p
顺便介绍一下开启root用户的远程访问权限的方法(不安全)
mysql> grant all PRIVILEGES on *.* to root@‘%‘ identified by ‘YouPassword‘;
新建名为scott的数据库
mysql> create database scott;
创建名为scott密码为tiger的用户
mysql> insert into mysql.user(Host,User,Password) values ("%","scott",password("tiger"));
刷新权限
mysql> flush privileges;
使scott用户拥有scott数据库的所有权限
mysql> grant all PRIVILEGES on scott.* to scott@‘%‘ identified by ‘tiger‘;
刷新权限
mysql> flush privileges;
退出
mysql> exit;
Centos6.5下安装Mysql
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。