美文网首页
CentOS7下MySQL相关

CentOS7下MySQL相关

作者: Liumouren | 来源:发表于2017-04-02 12:57 被阅读9次
CentOS 7 版本将MySQL数据库软件从默认的程序列表中移除,用mariadb代替了。安装MySQL的操作如下
# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# rpm -ivh mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server
安装成功后重启mysql服务。
# service mysqld restart

正常情况下,初次安装是不需要密码就可以登入的

设置密码
# set password for 'root'@'localhost' =password('password');
参考文章:

相关文章

网友评论

      本文标题:CentOS7下MySQL相关

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