召唤神龙 - 安装 centos 8, php 8, mysql 8, laravel 8 的整套 php 运行环境

召唤神龙 - 安装 centos 8, php 8, mysql 8, laravel 8 整套 php 运行环境

本文编写时间:2020-11-27
本文最后更新:2021-12-20
更新地方放最后。

标题说明

传说集齐龙珠可以召唤神龙。

而使用 php 的常用开发框架 laravel 这一技术栈大版本惊人的实现了统一,均为 8。centos 8, php 8, mysql 8, laravel 8。
(假装不知道 ubuntu 也有很多人用。。)

用 linux 的好处是开发环境和部署环境高度统一,而 win 10 和 docker 的普及使得所有的 php 程序员可以轻易在 windows 电脑和 mac 电脑进行 linux 环境下的开发,同时阿里巴巴开源镜像站的存在使得安装本文全部软件所需时间仅需2分钟左右,已经方便的没法形容了。也是写这个系列文章的初衷。

以下列出这4类软件的大版本为 8 时的发行时间。

软件 发行时间
centos 8 2019-09-24
php 8 2020-11-26
mysql 8 2016-09-12
laravel 8 2020-09-08


本文各软件版本

centos 8.2
php 8.0.0
mysql 8.0.21
laravel 8.16.1 


首先,安装阿里的 centos 仓库。(centos 8)

curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo
rm -f  /etc/yum.repos.d/CentOS-centosplus.repo
rm -f  /etc/yum.repos.d/CentOS-PowerTools.repo
rm -f  /etc/yum.repos.d/CentOS-Extras.repo
rm -f  /etc/yum.repos.d/CentOS-AppStream.repo
dnf makecache
dnf repolist


安装阿里的 epel 仓库。(centos 8)

dnf install -y epel-release

sed -i 's|^#baseurl=https://download.fedoraproject.org/pub|baseurl=https://mirrors.aliyun.com|' /etc/yum.repos.d/epel*

sed -i 's|^metalink|#metalink|' /etc/yum.repos.d/epel*
dnf makecache
dnf repolist


安装阿里的 remi 的仓库(centos 8)

dnf install -y https://mirrors.aliyun.com/remi/enterprise/remi-release-8.rpm

sed -i  's/https*:\/\/rpms.remirepo.net/https:\/\/mirrors.aliyun.com\/remi/g'  /etc/yum.repos.d/remi*

sed -i 's/#baseurl/baseurl/g' /etc/yum.repos.d/remi*

sed -i 's|^mirrorlist|#mirrorlist|' /etc/yum.repos.d/remi*

dnf makecache
dnf repolist


安装 php 8(centos 8)

dnf install -y yum-utils

dnf install -y php80 php80-php-devel  php80-php-fpm  php80-php-mbstring php80-php-memcached php80-php-redis  php80-php-mysqlnd  php80-php-pdo  php80-php-bcmath php80-php-xml php80-php-gd php80-php-gmp php80-php-igbinary php80-php-imagick php80-php-pdo_mysql php80-php-posix php80-php-simplexml  php80-php-opcache php80-php-xsl php80-php-xmlwriter php80-php-xmlreader php80-php-swoole php80-php-zip  php80-php-yaml php80-php-uuid

体验到快如闪电的速度了吧!

提示 :
php80-php-memcache
php80-php-mcrypt
php80-php-phalcon
php80-php-yar
php80-php-yaf
这几个暂未发现,所以也没放在上面的命令里。

安装阿里的 composer 镜像源(centos 8)

ln -s /usr/bin/php80 /usr/bin/php

curl -o /usr/local/bin/composer https://mirrors.aliyun.com/composer/composer.phar

chmod +x /usr/local/bin/composer

composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/


安装 nginx 并整合 php-fpm 服务(centos 8)

下面这个echo是一句命令,得一起复制

echo $'[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true ' > /etc/yum.repos.d/nginx.repo
dnf makecache
dnf install -y nginx
systemctl enable nginx
systemctl enable php80-php-fpm
sed -i 's/user\ =\ apache/user\ =\ nginx/g' /etc/opt/remi/php80/php-fpm.d/www.conf
sed -i 's/group\ =\ apache/group\ =\ nginx/g' /etc/opt/remi/php80/php-fpm.d/www.conf
sed -i 's/listen\ =\ \/var\/opt\/remi\/php80\/run\/php-fpm\/www.sock/listen=9000/g' /etc/opt/remi/php80/php-fpm.d/www.conf

rm -f /etc/nginx/conf.d/default.conf
vi /etc/nginx/conf.d/default.conf

/etc/nginx/conf.d/default.conf 文件内容如下

server {
    listen       80;
    server_name  localhost;
    charset utf-8 ;
    access_log  /var/log/nginx/host.access.log  main;
    root   /www/blog/public;
    index index.php  index.html index.htm;
    error_page 404  500 502 503 504  /50x.html;
    location = /50x.html {
        root   /www/blog/public;
    }
    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $realpath_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}


安装mysql 8(centos 8)

实际也用了阿里的镜像,因为是从AppStream库下载的,速度极快。

dnf install -y @mysql
systemctl enable mysqld
systemctl start mysqld
mysql -uroot

mysql -uroot,这个命令是登录mysql服务用的。
进入后执行下面这个命令,创建一个空的数据库名叫laravel,然后用 quit 退出。

create database laravel default charset utf8mb4;


安装redis,git 以及其他常用库(centos 8)

dnf install -y  git wget vim redis zip unzip p7zip rsync crontabs supervisor net-tools python3
systemctl enable redis
systemctl start redis


安装 laravel 8(centos 8)

实际也用了阿里的镜像,因为 composer 镜像源已设置过。
假设项目名称叫blog,安装在 /www 目录下

mkdir -p /www
cd /www
composer create-project --prefer-dist laravel/laravel blog "8.*"
rm -f ./blog/routes/web.php
vi ./blog/routes/web.php
<?php
use Illuminate\Support\Facades\Route;

Route::get('/', function () {
     ob_start();
     phpinfo(INFO_GENERAL);
     $s = ob_get_contents();
     ob_clean();
     $system = preg_replace( '#^.+?Build.System.</td><td class="v">([^<]+?)\<.+$#s','$1',$s );
     echo "operating system: ".$system."<br>\n";

     echo "php: ".phpversion()."<br>\n";

     echo "laravel: " . app()::VERSION."<br>\n";

     $dbversion = \DB::select("select version() v");
     echo "mysql: " . $dbversion[0]->v."<br>\n";
});


启动 php-fpm 和 nginx 并验证安装正确

systemctl start nginx
systemctl start php80-php-fpm

curl localhost/

就能看到类似下面的输出:

operating system : Red Hat Enterprise Linux release 8.2 (Ootpa) <br>
php : 8.0.0<br>
laravel: 8.16.1<br>
mysql: 8.0.21<br>


总结(centos 8)

感谢 php 开发组的努力,使得 php 在现代编程语言中保持了竞争力。
感谢阿里的开源镜像库

最后的更新 2021-12-20(centos 8)

当遇到 dnf makecache 命令报错时,看情况使用如下几个命令。

sed -i 's|^failovermethod=priority|#failovermethod=priority|' /etc/yum.repos.d/CentOS-Base.repo

sed -i 's|^failovermethod=priority|#failovermethod=priority|' /etc/yum.repos.d/CentOS-Linux-epel.repo

mv /etc/yum.repos.d/epel-modular.repo /etc/yum.repos.d/epel-modular.repo.bak
本作品采用《CC 协议》,转载必须注明作者和本文链接
本帖由系统于 2年前 自动加精
讨论数量: 1

2030年,我已经用上了redis8、thinkphp8、mongodb8、swoole8、workman8

3年前 评论
诺大的院子 3年前

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!
未填写
文章
49
粉丝
7
喜欢
60
收藏
94
排名:592
访问:1.3 万
私信
所有博文
社区赞助商