在CentOS上使用yum安装MySQL+安全优化

本文详细介绍如何使用yum在CentOS 6.5上安装MySQL,并进行基本的安全配置,包括设置root密码、删除匿名用户及清理test数据库。

   使用yum安装的好处是,你不用自己去解决软件之间的依赖问题,基本上yum执行完成,也就把软件安装好了,下面介绍使用yum的方法来安装MySQL,同时也会介绍安装完成后的安全优化。

        注意:下面的操作都是以新安装的CentOS  6.5来作为演示的。




1.使用yum安装MySQL

        

  • 查看是否已经安装MySQL:

1
[root@leaf] # yum list installed | grep mysql

        如果你在安装CentOS的时候指定了安装MySQL数据库,就要有显示,这里我并没有安装MySQL。

  • 安装MySQL数据库:

1
[root@leaf ~] # yum -y install mysql-server mysql mysql-devel

        注意在你的系统上查看安装成功后的提示信息。

  • 查看安装的MySQL信息:

1
2
3
4
5
[root@leaf ~] # yum list installed | grep mysql
mysql.x86_64            5.1.73-5.el6_6  @base                                   
mysql-devel.x86_64      5.1.73-5.el6_6  @base                                   
mysql-libs.x86_64       5.1.73-5.el6_6  @base                                   
mysql-server.x86_64     5.1.73-5.el6_6  @base
  • 开启MySQL服务:

1
2
[root@leaf ~] # service mysqld start
Starting mysqld:                                           [  OK  ]
  • 登陆到MySQL数据库中:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[root@leaf ~] # mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection  id  is 4
Server version: 5.1.73 Source distribution
 
Copyright (c) 2000, 2013, 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>


        其实如果是非生产环境要求的话,像上面这样使用yum简单安装就可以了,当然如果是用于生产环境的,那么建议还是使用源码安装。




2.MySQL安全优化


        至于为什么要安全优化,可以看博主写的用源码安装MySQL的博文:《在CentOS上源码安装MySQL+安装问题解决+安全优化》

        下面就直接给出操作的步骤。(注意:要确保MySQL服务已经开启,上面已经给出方法)


(1)为root用户创建密码

1
2
3
4
5
6
7
[root@leaf ~] # mysql -u root
mysql> update mysql.user  set  password = password( '123456' ) where User =  'root' ;
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3  Changed: 3  Warnings: 0
 
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

        上面就为root用户创建了密码`123456`。


(2)删除匿名用户

  • 先使用刚刚创建的密码登陆到MySQL中:

1
2
3
4
[root@leaf ~] # mysql -u root -p
Enter password:
 
mysql>
  • 删除匿名用户:

1
2
3
4
5
6
7
mysql> DROP USER  '' @ 'localhost' ;
Query OK, 0 rows affected (0.00 sec)
 
mysql> DROP USER  '' @ 'leaf' ;     
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

        注意第二条删除语句的`leaf`,在这里,`leaf`为我的主机名,按照你的实际情况进行操作即可。


        执行完上面(1)(2)步之后再查看一下当前的账户信息:

1
2
3
4
5
6
7
8
9
mysql>  select  User, Host, Password from mysql.user; 
+------+-----------+-------------------------------------------+
| User | Host      | Password                                  |
+------+-----------+-------------------------------------------+
| root | localhost | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
| root | leaf      | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
| root | 127.0.0.1 | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
+------+-----------+-------------------------------------------+
3 rows  in  set  (0.00 sec)


(3)删除test数据库或名字以test开头的数据库

        操作如下:

1
2
3
4
5
6
7
8
mysql> delete from mysql.db where db like  'test%' ;
Query OK, 2 rows affected (0.00 sec)
 
mysql> drop database  test ;
Query OK, 0 rows affected (0.00 sec)
 
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)


        OK,到这里的话,使用yum安装MySQL以及MySQL的基本安全优化就完成了,应该不会有太大的问题。




本文转自 xpleaf 51CTO博客,原文链接:http://blog.51cto.com/xpleaf/1748625,如需转载请自行联系原作者
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值