美文网首页
5分钟在centos7.X安装MysqlServer5.6

5分钟在centos7.X安装MysqlServer5.6

作者: 鲶鲶有鱼 | 来源:发表于2020-09-27 11:54 被阅读0次
  1. 切换root账户
su

或者以下shell操作sudo授权

   wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
   
   rpm -ivh mysql-community-release-el7-5.noarch.rpm
   
   yum install mysql-server
   
   mysqladmin -u root password 'PWD’
  1. 分配一个远程账户,有所有的权限。

    mysql -u root -p --用刚才设置PWD本地登录
    grant all privileges on *.* to test@"%" identified by "PWD123" with grant option;
    

test账户可以通过安装mysql的服务器IP远程登录了

相关文章

网友评论

      本文标题:5分钟在centos7.X安装MysqlServer5.6

      本文链接:https://www.haomeiwen.com/subject/vdgkuktx.html