centOS安装mysql5.7详细教程
linux  /  管理员 发布于 7年前   176
本文为大家分享了centOS下安装mysql5.7详细步骤,供大家参考,具体内容如下
第一步:
第一句检测系统是否自带安装mysql,若有执行第二句删除系统自带的mysql及其依赖。
yum list installed | grep mysqlyum -y remove mysql-libs.x86_64
第二步:
给CentOS添加rpm源,并且选择较新的源,下面代码逐句执行
wget dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpmyum localinstall mysql-community-release-el6-5.noarch.rpmyum repolist all | grep mysqlyum-config-manager --disable mysql55-communityyum-config-manager --disable mysql56-communityyum-config-manager --enable mysql57-community-dmryum repolist enabled | grep mysql
第三步:
安装mysql 服务器
yum install mysql-community-server
第四步:
service mysqld start
第五步:
查看mysql是否自启动,并且设置开启自启动
chkconfig --list | grep mysqldchkconfig mysqld on
第六步:
这一步很重要!!!
不知道从mysql哪个版本开始,mysql的root默认密码就不为空了,在安装的过程中默认密码保存在安装日志中了。我们要通过安装日志找到默认密码,用默认密码登陆mysql成功后会强行让你修改密码,修改的密码还要够复杂(复合mysql默认的密码策略)才能修改成功,一般带大小写字母特殊字符和数字超过8个字符就可以。
首先找到安装日志
find / -name mysqld.log
然后发现该日志文件路径在 /var/log/mysqld.log。然后用下面命令打开,按‘i'键上翻
vim /var/log/mysqld.log
上图红色地方就是root密码所在地
第七步:
mysql安全设置
mysql_secure_installation
输入上面命令进行下面步骤
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!In order to log into MySQL to secure it, we'll need the currentpassword for the root user. If you've just installed MySQL, andyou 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):<C初次运行,输入刚刚找到的初始密码,会强制你先修改密码才能进行下去OK, successfully used password, moving on…Setting the root password ensures that nobody can log into the MySQLroot user without the proper authorisation.Set root password? [Y/n] <C 是否设置root用户密码,输入y并回车或直接回车New password: <C 设置root用户的密码Re-enter new password: <C 再输入一次你设置的密码Password updated successfully!Reloading privilege tables..… Success!By default, a MySQL installation has an anonymous user, allowing anyoneto log into MySQL without having to have a user account created forthem. This is intended only for testing, and to make the installationgo a bit smoother. You should remove them before moving into aproduction environment.Remove anonymous users? [Y/n] <C 是否删除匿名用户,生产环境建议删除,所以直接回车… Success!Normally, root should only be allowed to connect from 'localhost'. Thisensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n] <C是否禁止root远程登录,根据自己的需求选择Y/n并回车,建议禁止… Success!By default, MySQL comes with a database named 'test' that anyone canaccess. This is also intended only for testing, and should be removedbefore moving into a production environment.Remove test database and access to it? [Y/n] <C 是否删除test数据库,直接回车- Dropping test database…… Success!- Removing privileges on test database…… Success!Reloading the privilege tables will ensure that all changes made so farwill take effect immediately.Reload privilege tables now? [Y/n] <C 是否重新加载权限表,直接回车… Success!Cleaning up…All done! If you've completed all of the above steps, your MySQLinstallation should now be secure.Thanks for using MySQL![root@server1 ~]#
第八步:
可选步骤,原来Linux下的MySQL默认是区分表名大小写的,通过如下设置,可以让MySQL不区分表名大小写:
1、用root登录,修改 /etc/my.cnf;
2、在[mysqld]节点下,加入一行: lower_case_table_names=1
3、重启MySQL即可; service mysqld restart
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..路人 在
php中使用hyperf框架调用讯飞星火大模型实现国内版chatgpt功能示例中评论 教程很详细,如果加个前端chatgpt对话页面就完美了..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号