#mysql-server mysql-client 下载 # http://dev.mysql.com/downloads/mysql/ #安装之前应该先查询系统是否自在了mysql的软件包 rpm -qa|grep -i mysql #如果有的话需要先删除 rpm -e 软件名 --nodeps rpm -ivh MySQL-server-5.6.17-1.linux_glibc2.5.x86_64.rpm rpm -ivhMySQL-client-5.6.17-1.linux_glibc2.5.x86_64.rpm #安装后生成的一个随机密码在 /root/.mysql_secret #启动 MySQL service mysql start #登录mysql mysql -u root -p #修改密码 SET PASSWORD=password('password'); #添加一个可远程登录的帐号 GRANT all privileges on *.* TO 'root'@'%' identified by 'password' WITH GRANT OPTION; FLUSH PRIVILEGES; #修改密码 SET PASSWORD FOR 'root'@'%' = PASSWORD('password'); ######################################### #可运行此脚本 进行生产服务器安全配置 /usr/bin/mysql_secure_installation #Enter current password for root 输入root密码 #Change the root password? 是否修改root的密码 #Remove anonymous users? 是否删除匿名账号 #Disallow root login remotely? 是否取消root用户远程登录 #Remove test database and access to it? 是否删除test库和对test库的访问权限 #Reload privilege tables now? 是否现在刷新授权表使修改生效
CentOS RPM安装 MySQL-5.6.17
原创zunfengke ©著作权
文章标签 CentOS RPM安装 MySQL-5 文章分类 MySQL 数据库
下一篇:JSONP 简洁交互(PHP)
-
centos7安装mysql8
centos7安装mysql8全过程
mysql Server MySQL -
mysql-5.6.17编译安装脚本
重要的事情认真做,普通的事情规范做!
mysql 数据库 -
centos rpm方式安装mysql
卸载原有的mysql下载安装自定义目录修改配置文件初始化数据库启动数据库服务登录并修改密码开启远程访问设置开机启动
mysql linux MySQL sed