CentOS中安装MySQL

本文档详细介绍了如何在CentOS系统上卸载自带的MySQL安装包,并解决依赖问题,然后安装自定义版本的MySQL及其客户端。此外,还提供了初始化MySQL配置、设置root密码、调整权限等操作步骤。

 

# 首先应该删除 CentOS 中自带的 MySQL 安装包, 否则安装时会报错
[root@node1 /]# rpm -qa | mysql    # 查询所有自带包中的 MySQL 安装包, 参数q: query查询, 参数a: all
mysql-libs-5.1.66-2.el6_3.i686    # 查询结果

[root@node1 /]# rpm -e mysql-libs-5.1.66-2.el6_3.i686    # 这时候删除依然报错
error: Failed dependencies:    # 这是因为依赖包的缘故
	libmysqlclient.so.16 is needed by (installed) postfix-2:2.6.6-2.2.el6_1.i686
	libmysqlclient.so.16(libmysqlclient_16) is needed by (installed) postfix-2:2.6.6-2.2.el6_1.i686
	mysql-libs is needed by (installed) postfix-2:2.6.6-2.2.el6_1.i686
	
[root@node1 /]# rpm -ef mysql-libs-5.1.66-2.el6_3.i686 --nodeps    # 使用强制删除, 参数e: erasure擦除, 参数--nodeps: 强制解除依赖

[root@node1 /]# rpm -qa | mysql    
-bash: mysql: command not found    # 这时候再查询 MySQL 安装包, 发现已经被删除了

[root@node1 /]# rpm -ivh MySQL-server-5.1.73-1.glibc23.i386.rpm    # 安装自己的 MySQL, 参数i: install安装, 参数v: 显示安装详细信息, 参数h: 显示安装进度
Preparing...                ########################################### [100%]
   1:MySQL-server           ########################################### [100%]

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h node1 password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

Please report any problems with the /usr/bin/mysqlbug script!

Starting MySQL. SUCCESS!

[root@node1 /]# rpm -ivh MySQL-client-5.1.73-1.glibc23.i386.rpm    # 安装 MySQL 的client, 参数i: install安装, 参数v: 显示安装详细信息, 参数h: 显示安装进度
Preparing...                ########################################### [100%]
   1:MySQL-client           ########################################### [100%]

[root@node1 /]# /usr/bin/mysql_secure_installation    # 初始化 MySQL 配置

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!


In order to log into MySQL to secure it, we'll need the current
password for the root user.  If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):    # 直接回车
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

Set root password? [Y/n] Y    # 设置root用户密码
New password:    # 输入要设置的root用户密码
Re-enter new password:    # 确认密码
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] Y    # 移除匿名用户
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] n    # 允许root用户远程登录
 ... skipping.

By default, MySQL comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n]  n    # 不移除 MySQL 自带的test database
 ... skipping.

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] Y # 刷新 MySQL 的权限
 ... Success!

Cleaning up...



All done!  If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!

# (执行下面的语句: *.*: 所有库下的所有表   xxx.xxx.xxx.xxx: 这个指定的IP地址可以连接MySql)
mysql> 
[root@node1 /]#mysql -uroot -p
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'xxx.xxx.xxx.xxx' IDENTIFIED BY '密码' WITH GRANT OPTION;
mysql> FLUSH PRIVILEGES;

 

转载于:https://my.oschina.net/u/2503731/blog/664693

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值