登录
首页 >  数据库 >  MySQL

CentOS6.5 下升级php7、mysql5.7

来源:SegmentFault

时间:2023-02-16 15:36:37 481浏览 收藏

你在学习数据库相关的知识吗?本文《CentOS6.5 下升级php7、mysql5.7》,主要介绍的内容就涉及到MySQL、Linux、PHP、centos,如果你想提升自己的开发能力,就不要错过这篇文章,大家要知道编程理论基础和实战操作都是不可或缺的哦!

CentOS6.5 下升级php7、mysql5.7

php7出了有一段时间了,最近家里的机器及自己的虚拟机都升级到了php7。准备以后新的东西全部都用php7来写了。最近想把阿里云的也升级到php7,然后就开始升级了,以下是一些升级过程。当然也遇到了一些问题,本尊辣么聪明肯定都解决了呀Y(^_^)Y。

安装最新的nginx

不通过源码包安装使用yum

使用yum源安装比较好管理,就是样。

修改yum 源

进入

server {
    listen       80;
    server_name  photo.lattecake.com;

    client_max_body_size 10m;

    root /home/dudulu/website/com-lattecake-photo/web;

    access_log  /var/log/nginx/photo.lattecake.com.access.log  main;
    error_log /var/log/nginx/photo.lattecake.com.error.log;

    location / {
        try_files $uri /app.php$is_args$args;
        index  index.html index.htm index.php app.php;
    }

    error_page  404              /404.html;
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    location ~ ^/(app_dev|config)\.php(/|$) {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  app.php;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        fastcgi_param DOCUMENT_ROOT $realpath_root;
        include        fastcgi_params;
    }

    location ~ ^/app\.php(/|$) {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  app.php;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        fastcgi_param DOCUMENT_ROOT $realpath_root;
        include        fastcgi_params;
        internal;
    }
}

因为我一般使用symfony框架写东西,所以我就按symfony的标准配制了。如果不是请参考其他资料。

创建日志文件及分组

"repositories": {
    "packagist": {
        "type": "composer",
        "url": "https://packagist.phpcomposer.com"
    }
}

OK,一切搞定!试一下 composer install 来体验飞一般的速度吧!

本文地址: http://lattecake.com/post/20088

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于数据库的相关知识,也可关注golang学习网公众号。

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表