美文网首页
在Linux系统centOS环境下安装mysql工具

在Linux系统centOS环境下安装mysql工具

作者: 前端摘要 | 来源:发表于2015-02-11 14:24 被阅读0次

    本文来自:http://blog.sina.com.cn/s/blog_140faf95b0102vdt4.html 

    一般我们建站都用一键安装包或者WEB面板比较方便,但是如果需要深入学会还是通过源编译比较好。安装好apache和php后,再安装mysql,我这里是直接用yum安装的。

    1、安装mysql

    yum install mysql mysql-server

    chkconfig --levels 235 mysqld on //开机启动

    /etc/init.d/mysqld start

    2、设置mysql

    mysql_secure_installation //设置mysql

    按提示操作即可,需要注意的是,我是在使用搬瓦工512MB内存环境,一般建站建议使用512MB以上内存较为宽松。(http://www.banwagong.me/19.html )。

    将mysql和php关联

    yum install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc

    重启apache

    /etc/init.d/httpd restart

    登录mysql,

    mysql -uroot -p

    设置数据库时区

    SET time_zone = '+8:00';

    flush privileges;

    vim /etc/my.cnf

    [mysqld]区域,加上这句

    default-time_zone = '+8:00'

    操作系统设置时区 tzselect 按提示操作

    重启mysql

    service mysqld restart

    /etc/init.d/mysqld restart

    相关文章

      网友评论

          本文标题:在Linux系统centOS环境下安装mysql工具

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