解决国内使用LAMP脚本时下载速度慢的问题

    偶然在自家虚拟机安装LAMP脚本时发现下载速度奇慢无比,其中下载Mysql竟然需要12小时   

    > - < 忍无可忍

    定位到LAMP脚本include文件夹中的config.sh文件找到一下位置将其修改为国内或快速源

    1)Apache

         修改为 https://mirrors.tuna.tsinghua.edu.cn/apache/httpd/httpd-2.4.41.tar.gz

    2)PHP


        以php-5.6.40版本为例

        修改为 https://ftp.ntu.edu.tw/php/distributions/php-5.6.40.tar.gz

    3)MySQL

        定位到include文件夹中的mysql.sh文件


        将mysql_filename_url修改为 

        MySQL 8.0

        https://mirrors.tuna.tsinghua.edu.cn/mysql/downloads/MySQL-${mysql_ver}/${mysql_filename}.tar.xz

        MySQL 5.7及以往版本

        https://mirrors.tuna.tsinghua.edu.cn/mysql/downloads/MySQL-${mysql_ver}/${mysql_filename}.tar.gz


        进入系统正常运行lamp.sh脚本即可使用快速源进行下载安装

你可能感兴趣的:(解决国内使用LAMP脚本时下载速度慢的问题)