美文网首页
四,CentOS 6.8中安装mysql

四,CentOS 6.8中安装mysql

作者: 小猪Harry | 来源:发表于2018-07-29 21:52 被阅读0次

    通过yum来进行mysql的安装

    安装数据库:

    yum install -y mysql-server mysql mysql-devel
    

    在使用mysql数据库时,都得首先启动mysqld服务,因此有必要将mysql服务设置为开机启动:

    [root@www ~]# chkconfig mysqld on
    [root@www ~]# chkconfig --list | grep mysql
    mysqld             0:关闭    1:关闭    2:启用    3:启用    4:启用    5:启用    6:关闭
    

    本次启动数据库:

    service mysqld start
    

    为了安全起见,我们要给root设置一个密码:

    mysqladmin -u root -p password 'yourpassword'
    

    此时我们就可以通过mysql -u root -p来登录数据库。

    开放远程登录权限

    GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root';
    FLUSH PRIVILEGES;

    关闭防火墙

    永久关闭防火墙

    [root@bigdata-senior01 hadoop]# chkconfig iptables off
    

    本次关闭防火墙

    [root@bigdata-senior01 hadoop-2.5.0]# service iptables stop
    iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
    iptables: Flushing firewall rules:                         [  OK  ]
    iptables: Unloading modules:                               [  OK  ]
    

    相关文章

      网友评论

          本文标题:四,CentOS 6.8中安装mysql

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