码迷,mamicode.com
首页 > 数据库 > 详细

rpm方式在centos7中安装mysql

时间:2017-11-25 20:43:38      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:win   成功   node   cli   tail   擦除   man   rpm命令   .net   

1.安装MySQL server


首先下载好mysql的rpm安装包 
使用rpm命令安装: 
rpm -ivh MySQL-server-5.1.73-1.glibc23.i386.rpm 
命令解释:i:install v:显示详情 h:显示进度条 

问题:显示软件安装与本机预装的mysql冲突: 
file /usr/share/mysql/romanian/errmsg.sys from install of MySQL-server-5.1.73-1.glibc23.i386 conflicts with file from package mysql-libs-5.1.71-1.el6.i686

解决: 
1.先找出这个包 
rpm -qa | grep mysql 
(q:query a:all) 



2.使用rpm -e 擦除这个包,但是提示下面的依赖错误 
 

说明别的软件依赖这个包 
但是可以采用暴力方式,解除依赖删除: 
使用命令:rpm -e mysql-libs-5.1.66-2.el6_3.i686 --nodeps 

重新执行安装MySQL命令: 
 

安装server成功!显示已经成功启动server

2.安装client端


使用命令: 
rpm -ivh MySQL-client-5.1.73-1.glibc23.i386.rpm

3.使用命令初始化mysql数据库(用户名和密码设置)


查看安装过程中提醒的信息,主要告诉我们如何初始化数据库: 

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 itcast01 password ‘new-password’ 

Alternatively you can run: 
/usr/bin/mysql_secure_installation 

输入如下命令初始化mysql: 
/usr/bin/mysql_secure_installation 
按照提示安装: 
Enter current password for root (enter for none):回车 
Set root password? [Y/n]输入 Y 
New password:输入新的密码 
Re-enter new password:再输一遍密码 
Remove anonymous users? [Y/n] Y 
Disallow root login remotely? [Y/n] n 
Remove test database and access to it? [Y/n] y 
Reload privilege tables now? [Y/n] y

4.使用客户端登录

mysql -uroot -p 
输入密码 
登录成功! 

转自:http://blog.csdn.net/u014726937/article/details/52142048

rpm方式在centos7中安装mysql

标签:win   成功   node   cli   tail   擦除   man   rpm命令   .net   

原文地址:http://www.cnblogs.com/jasonzeng/p/7896226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!