当前位置:Gxlcms > php框架 > Centos7下如何搭建Laravel环境(非docker)

Centos7下如何搭建Laravel环境(非docker)

时间:2021-07-01 10:21:17 帮助过:20人阅读

之前一直用docker搭建服务器运行环境,最近有个朋友来找我在服务器上手工搭建个PHP环境,搞了大半天,快玩不转了。

最近呢有个朋友找我帮忙搭建个PHP的环境,本来想让他直接用docker的。但是他买的是聚石塔的服务器,那边不给数据库开外网,只能内网去访问。用docker搭载宿主机的网络去访问的时候老是时不时的找不到地址,整个服务老是中断,无奈只能迁出来,一个个的安装重新搭建环境。我也是菜鸟一个折腾了半天总算搞定了。

准备工作

更换阿里源

服务器安装的centos7系统,先来换下阿里源。

  1. $ cd /etc/yum.repos.d/$ cp CentOS-Base.repo CentOS-Base.repo.bak
  2. $ wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
  3. $ yum clean all
  4. $ yum update
  5. $ yum makecache
  6. # 查看已安装的PHP,有的话rpm -e卸载
  7. $ yum list installed | grep php

安装EPEL

EPEL(Extra Packages for Enterprise Linux)是由 Fedora 社区打造,为 RHEL 及衍生发行版如 CentOS等提供高质量软件包的项目。就是一个高质量的白嫖软件源。

安装后可以使用 yum install packageName,即可安装很多以前需要编译安装的软件、常用的软件或一些比较流行的软件,比如Nginx之类。

  1. $ yum install epel-release

安装REMI源

CentOS下除了EPEL源之外还有REMI的源,REMI源保证了软件的最新版,但是不保证软件是稳定版。主要拿来安装最新的PHP版本。

  1. $ rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-7.rpm

安装PHP7+

选择PHP版本

先查询下可以安装的PHP版本

  1. $ yum repolist all | grep php * remi-php72: mirrors.tuna.tsinghua.edu.cn
  2. remi-php70 Remi's PHP 7.0 RPM repositor disabled
  3. remi-php70-debuginfo/x86_64 Remi's PHP 7.0 RPM repositor disabled
  4. remi-php70-test Remi's PHP 7.0 test RPM repo disabled
  5. remi-php70-test-debuginfo/x86_64 Remi's PHP 7.0 test RPM repo disabled
  6. remi-php71 Remi's PHP 7.1 RPM repositor disabled
  7. remi-php71-debuginfo/x86_64 Remi's PHP 7.1 RPM repositor disabled
  8. remi-php71-test Remi's PHP 7.1 test RPM repo disabled
  9. remi-php71-test-debuginfo/x86_64 Remi's PHP 7.1 test RPM repo disabled!remi-php72 Remi's PHP 7.2 RPM repositor enabled: 412remi-php72-debuginfo/x86_64 Remi's PHP 7.2 RPM repositor disabled
  10. remi-php72-test Remi's PHP 7.2 test RPM repo disabled
  11. remi-php72-test-debuginfo/x86_64 Remi's PHP 7.2 test RPM repo disabled
  12. remi-php73 Remi's PHP 7.3 RPM repositor disabled
  13. remi-php73-debuginfo/x86_64 Remi's PHP 7.3 RPM repositor disabled
  14. remi-php73-test Remi's PHP 7.3 test RPM repo disabled
  15. remi-php73-test-debuginfo/x86_64 Remi's PHP 7.3 test RPM repo disabled
  16. remi-php74 Remi's PHP 7.4 RPM repositor disabled
  17. remi-php74-debuginfo/x86_64 Remi's PHP 7.4 RPM repositor disabled
  18. remi-php74-test Remi's PHP 7.4 test RPM repo disabled
  19. remi-php74-test-debuginfo/x86_64 Remi's PHP 7.4 test RPM repo disabled
  20. remi-php80 Remi's PHP 8.0 RPM repositor disabled
  21. remi-php80-debuginfo/x86_64 Remi's PHP 8.0 RPM repositor disabled
  22. remi-php80-test Remi's PHP 8.0 test RPM repo disabled
  23. remi-php80-test-debuginfo/x86_64 Remi's PHP 8.0 test RPM repo disabled

设置默认安装的版本,这里我选择了php7.2

  1. $ yum-config-manager --enable remi-php72
  2. # 注意 如果提示 yum-config-manager 找不到的话需要先安装下 yum-utils,在来执行上面的配置
  3. $ yum -y install yum-utils
  4. # 最后选择自己想安装的PHP版本即可
  5. $ yum -y install php
  6. $ php -v
  7. $ php -m

安装PHP扩展

  1. # 查找php对应版本的扩展,我这里是7.2就写的php72-php
  2. $ yum search php72-php * base: mirrors.cloud.aliyuncs.com * extras: mirrors.cloud.aliyuncs.com * remi-php72: mirror.innosol.asia * remi-safe: mirror.innosol.asia * updates: mirrors.cloud.aliyuncs.com============================================================================================================= N/S matched: php72-php ==============================================================================================================php72-php-pecl-handlebars-devel.x86_64 : php72-php-pecl-handlebars developer files (header)php72-php-pecl-http-message-devel.x86_64 : php72-php-pecl-http-message developer files (headers)php72-php-pecl-propro-devel.x86_64 : php72-php-pecl-propro developer files (header)php72-php-pecl-psr-devel.x86_64 : php72-php-pecl-psr developer files (header)php72-php-pecl-raphf-devel.x86_64 : php72-php-pecl-raphf developer files (header)php72-php-pecl-swoole-devel.x86_64 : php72-php-pecl-swoole developer files (header)...# 安装扩展,注意扩展名不需要带上PHP的版本号,下面是我在Laravel里需要的一些扩展
  3. $ yum -y install php-fpm php-bcmath php-mbstring php-mysqli php-mysqlnd php-pdo php-pdo_mysql php-posix php-shmop php-simplexml php-sodium php-xml php-xmlreader php-xmlwriter php-xsl php-zip php-opcache
  4. # 然后查看扩展是否安装成功
  5. $ php -m

PHP-FPM

  1. # 启动
  2. $ systemctl start php-fpm
  3. # 停止or重启
  4. $ systemctl stop php-fpm
  5. $ systemctl restart php-fpm
  6. # 重载
  7. $ systemctl reload php-fpm
  8. # 设置开机启动
  9. $ systemctl enable php-fpm
  10. # 禁止开机启动
  11. $ systemctl disable php-pfm

最后查看下PHP-FPM的进程

  1. $ ps aux | grep php
  2. root 1728 0.0 0.1 455280 12780 ? Ss Sep07 0:01 php-fpm: master process (/etc/php-fpm.conf)apache 1998 0.0 0.6 558512 48084 ? S Sep07 0:15 php-fpm: pool www
  3. apache 2873 0.0 0.4 542200 36012 ? S Sep07 0:19 php-fpm: pool www
  4. apache 2874 0.0 0.3 536164 29212 ? S Sep07 0:19 php-fpm: pool www
  5. apache 2875 0.0 0.4 542200 34832 ? S Sep07 0:21 php-fpm: pool www

也可以通过 service php-fpm status 查看下启动状态

配置文件

php-fpm.conf 文件默认在 /etc/php-fpm.conf

php.ini 文件默认在 /etc/php.ini

php.ini文件里有一些参数需要修改,编辑进入搜索 max 带这个关键字的一些配置自己看描述修改吧,也就是一些限制内存啦,文件大小啦,执行时间啦之类的。

修改完 systemctl reload php-fpm 执行下即可。

安装Nginx

  1. # 安装Nginx最新源
  2. $ yum localinstall http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
  3. $ yum repolist enabled | grep "nginx*"# 安装nginx
  4. $ yum -y install nginx
  5. # 启动nginx
  6. $ service nginx start
  7. # 测试nginx配置文件是否正常
  8. $ nginx -t
  9. # 平滑加载
  10. $ nginx -s reload
  11. # 设置nginx服务器开机自启动
  12. $ systemctl enable nginx.service
  13. # 检查开机自动是否设置成功
  14. $ systemctl list-dependencies | grep nginx

如果遇到nginx重启之类提示说PID为空或者找不到的,可以看下是否有残留进行杀掉,然后 nginx -c /etc/nginx/nginx.conf 指定好配置文件。

可以通过 service nginx status 查看nginx的状态。

Nginx的默认配置目录都在 /etc/nginx/ 下,默认错误日志在 /var/log/nginx/error.log,主要服务器配置文件在 /etc/nginx/conf.d/*.conf

下面是一份简单的Server配置, 做了Https的301 跳转,不需要的话就把ssl相关部分去掉,301跳转去掉即可。

  1. server {
  2. # 这里做了Https的相关配置
  3. listen 443 ssl http2;
  4. server_name your_server_name;
  5. # 项目访问根目录
  6. root /xxx/www/public;
  7. # ssl证书相关
  8. ssl_certificate /xxx/certs/xxx.pem;
  9. ssl_certificate_key /xxx/certs/xxx.key;
  10. ssl_session_timeout 5m;
  11. ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
  12. ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  13. ssl_prefer_server_ciphers on;
  14. # 添加几条有关安全的响应头;与 Google+ 的配置类似,详情参见文末。
  15. add_header X-Frame-Options "SAMEORIGIN";
  16. add_header X-XSS-Protection "1; mode=block";
  17. add_header X-Content-Type-Options "nosniff";
  18. # 站点默认页面;可指定多个,将顺序查找。
  19. # 例如,访问 http://example.com/ Nginx 将首先尝试「站点根目录/index.html」是否存在,不存在则继续尝试「站点根目录/index.htm」,以此类推...
  20. index index.html index.htm index.php;
  21. # 指定字符集为 UTF-8
  22. charset utf-8;
  23. # Laravel 默认重写规则;删除将导致 Laravel 路由失效且 Nginx 响应 404。
  24. location / {
  25. try_files $uri $uri/ /index.php?$query_string;
  26. }
  27. # 关闭 [/favicon.ico] 和 [/robots.txt] 的访问日志。
  28. # 并且即使它们不存在,也不写入错误日志。
  29. location = /favicon.ico { access_log off; log_not_found off; }
  30. location = /robots.txt { access_log off; log_not_found off; }
  31. # 将 [404] 错误交给 [/index.php] 处理,表示由 Laravel 渲染美观的错误页面。
  32. error_page 404 /index.php;
  33. # URI 符合正则表达式 [\.php$] 的请求将进入此段配置
  34. location ~ \.php$ {
  35. # 配置 FastCGI 服务地址,可以为 IP:端口,也可以为 Unix socket。
  36. fastcgi_pass 127.0.0.1:9000;
  37. # 配置 FastCGI 的主页为 index.php。
  38. fastcgi_index index.php;
  39. # 配置 FastCGI 参数 SCRIPT_FILENAME 为 $realpath_root$fastcgi_script_name。
  40. fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
  41. # 引用更多默认的 FastCGI 参数。
  42. include fastcgi_params;
  43. }
  44. # 通俗地说,以上配置将所有 URI 以 .php 结尾的请求,全部交给 PHP-FPM 处理。
  45. # 除符合正则表达式 [/\.(?!well-known).*] 之外的 URI,全部拒绝访问
  46. # 也就是说,拒绝公开以 [.] 开头的目录,[.well-known] 除外
  47. location ~ /\.(?!well-known).* {
  48. deny all;
  49. }}server {
  50. listen 80;
  51. server_name your_server_name;
  52. return 301 https://your_server_name$request_uri;}

最后重启下nginx让配置生效 nginx -s reload, 如果中间有问题记得查看下nginx的错误日志文件,很有用,基本坑都会记录在里面 /var/log/nginx/error.log

安装Mysql

因为朋友这边是使用的聚石塔的RDS,其实是不需要安装数据库的了,不过还是简单写下Mysql的安装把,这里使用Mysql5.7为例,想要安装Mysql8的自行换下。

  1. # 安装mysql源
  2. $ yum -y localinstall http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm
  3. $ yum repolist enabled | grep "mysql.*-community.*"# 安装Mysql
  4. $ yum -y install mysql-community-server install mysql-community-devel
  5. # 启动mysql
  6. $ service mysqld start
  7. # 检查mysql启动是否正常
  8. $ service mysqld status 或者 ps -ef | grep mysql
  9. # 设置mysqld服务开机自启动
  10. $ systemctl enable mysqld.service
  11. # 使用yum安装Mysql,启动会系统会自动生成一个随机的数据库密码,需要修改下
  12. # 查看mysql的随机密码
  13. $ grep 'temporary password' /var/log/mysqld.log
  14. # 终端登录Mysql
  15. $ mysql -hlocalhost -u root -p xxx
  16. # 修改密码
  17. $ ALTER USER 'root'@'localhost' IDENTIFIED BY 'Yourpassword';

Laravel权限

安装完 Laravel 后,你可能需要给这两个文件配置读写权限:storage 目录和 bootstrap/cache 目录应该允许 Web 服务器写入。

这里需要给PHP-FPM运行角色的权限。

  1. $ ps aux | grep php-fpm
  2. root 1728 0.0 0.1 455280 12780 ? Ss Sep07 0:01 php-fpm: master process (/etc/php-fpm.conf)apache 1998 0.0 0.4 542128 31616 ? S Sep07 0:17 php-fpm: pool www
  3. apache 2873 0.0 0.5 552440 46508 ? S Sep07 0:22 php-fpm: pool www
  4. apache 2874 0.0 0.6 560740 52748 ? S Sep07 0:22 php-fpm: pool www...

可以看到我这里子进程是一个 apache 用户在执行,所以需要把上面2个目录改成 apache(我也不知道这个鬼用户那里创建来的,可能默认安装php-fpm的时候创建的吧…)。

找到对应的目录

  1. # 暴力一些
  2. $ chown -R apache:apache /xxx/storage/$ chown -R apache:apache /xxx/bootstrap/cache/# 在给个755权限
  3. $ chmod -R 755 /xxx/storage/$ chmod -R 755 /xxx/bootstrap/cache/

相关推荐:最新的五个Laravel视频教程

以上就是Centos7下如何搭建Laravel环境(非docker)的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行