최근에 친구가 PHP 환경 설정에 도움을 요청했습니다. 원래는 친구가 직접 Docker를 사용하길 원했습니다. 하지만 그가 구입한 서버는 Jushita의 서버였으며, 데이터베이스용 외부 네트워크가 없었고, 내부 네트워크를 통해서만 접속할 수 있었습니다. 도커를 이용하여 호스트의 네트워크에 접속을 하게 되면 가끔 주소를 찾을 수 없고 전체 서비스가 항상 중단되는 현상이 발생하여 이사를 가서 환경을 하나씩 설치하고 재구축할 수밖에 없습니다. 저도 초보인데 오랜 고민끝에 드디어 알아냈습니다.
$ cd /etc/yum.repos.d/$ cp CentOS-Base.repo CentOS-Base.repo.bak $ wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo $ yum clean all $ yum update $ yum makecache # 查看已安装的PHP,有的话rpm -e卸载 $ yum list installed | grep php
설치 후 yum install packageName
을 사용하여 이전에 컴파일하고 설치해야 했던 많은 소프트웨어, 일반적으로 사용되는 소프트웨어 또는 Nginx와 같은 일부 인기 소프트웨어를 설치할 수 있습니다.
$ yum install epel-release
yum install packageName
,即可安装很多以前需要编译安装的软件、常用的软件或一些比较流行的软件,比如Nginx之类。
$ rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-7.rpm
CentOS下除了EPEL源之外还有REMI的源,REMI源保证了软件的最新版,但是不保证软件是稳定版。主要拿来安装最新的PHP版本。
$ yum repolist all | grep php * remi-php72: mirrors.tuna.tsinghua.edu.cn remi-php70 Remi's PHP 7.0 RPM repositor disabled remi-php70-debuginfo/x86_64 Remi's PHP 7.0 RPM repositor disabled remi-php70-test Remi's PHP 7.0 test RPM repo disabled remi-php70-test-debuginfo/x86_64 Remi's PHP 7.0 test RPM repo disabled remi-php71 Remi's PHP 7.1 RPM repositor disabled remi-php71-debuginfo/x86_64 Remi's PHP 7.1 RPM repositor disabled remi-php71-test Remi's PHP 7.1 test RPM repo disabled 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 remi-php72-test Remi's PHP 7.2 test RPM repo disabled remi-php72-test-debuginfo/x86_64 Remi's PHP 7.2 test RPM repo disabled remi-php73 Remi's PHP 7.3 RPM repositor disabled remi-php73-debuginfo/x86_64 Remi's PHP 7.3 RPM repositor disabled remi-php73-test Remi's PHP 7.3 test RPM repo disabled remi-php73-test-debuginfo/x86_64 Remi's PHP 7.3 test RPM repo disabled remi-php74 Remi's PHP 7.4 RPM repositor disabled remi-php74-debuginfo/x86_64 Remi's PHP 7.4 RPM repositor disabled remi-php74-test Remi's PHP 7.4 test RPM repo disabled remi-php74-test-debuginfo/x86_64 Remi's PHP 7.4 test RPM repo disabled remi-php80 Remi's PHP 8.0 RPM repositor disabled remi-php80-debuginfo/x86_64 Remi's PHP 8.0 RPM repositor disabled remi-php80-test Remi's PHP 8.0 test RPM repo disabled remi-php80-test-debuginfo/x86_64 Remi's PHP 8.0 test RPM repo disabled
先查询下可以安装的PHP版本
$ yum-config-manager --enable remi-php72 # 注意 如果提示 yum-config-manager 找不到的话需要先安装下 yum-utils,在来执行上面的配置 $ yum -y install yum-utils # 最后选择自己想安装的PHP版本即可 $ yum -y install php $ php -v $ php -m
设置默认安装的版本,这里我选择了php7.2
# 查找php对应版本的扩展,我这里是7.2就写的php72-php $ 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里需要的一些扩展 $ 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 # 然后查看扩展是否安装成功 $ php -m
# 启动 $ systemctl start php-fpm # 停止or重启 $ systemctl stop php-fpm $ systemctl restart php-fpm # 重载 $ systemctl reload php-fpm # 设置开机启动 $ systemctl enable php-fpm # 禁止开机启动 $ systemctl disable php-pfm
$ ps aux | grep php 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 apache 2873 0.0 0.4 542200 36012 ? S Sep07 0:19 php-fpm: pool www apache 2874 0.0 0.3 536164 29212 ? S Sep07 0:19 php-fpm: pool www apache 2875 0.0 0.4 542200 34832 ? S Sep07 0:21 php-fpm: pool www
最后查看下PHP-FPM的进程
# 安装Nginx最新源 $ yum localinstall http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm $ yum repolist enabled | grep "nginx*"# 安装nginx $ yum -y install nginx # 启动nginx $ service nginx start # 测试nginx配置文件是否正常 $ nginx -t # 平滑加载 $ nginx -s reload # 设置nginx服务器开机自启动 $ systemctl enable nginx.service # 检查开机自动是否设置成功 $ systemctl list-dependencies | grep nginx
也可以通过 service php-fpm status
查看下启动状态
php-fpm.conf
文件默认在 /etc/php-fpm.conf
php.ini
文件默认在 /etc/php.ini
php.ini
文件里有一些参数需要修改,编辑进入搜索 max
带这个关键字的一些配置自己看描述修改吧,也就是一些限制内存啦,文件大小啦,执行时间啦之类的。
修改完 systemctl reload php-fpm
执行下即可。
server { # 这里做了Https的相关配置 listen 443 ssl http2; server_name your_server_name; # 项目访问根目录 root /xxx/www/public; # ssl证书相关 ssl_certificate /xxx/certs/xxx.pem; ssl_certificate_key /xxx/certs/xxx.key; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; # 添加几条有关安全的响应头;与 Google+ 的配置类似,详情参见文末。 add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection "1; mode=block"; add_header X-Content-Type-Options "nosniff"; # 站点默认页面;可指定多个,将顺序查找。 # 例如,访问 http://example.com/ Nginx 将首先尝试「站点根目录/index.html」是否存在,不存在则继续尝试「站点根目录/index.htm」,以此类推... index index.html index.htm index.php; # 指定字符集为 UTF-8 charset utf-8; # Laravel 默认重写规则;删除将导致 Laravel 路由失效且 Nginx 响应 404。 location / { try_files $uri $uri/ /index.php?$query_string; } # 关闭 [/favicon.ico] 和 [/robots.txt] 的访问日志。 # 并且即使它们不存在,也不写入错误日志。 location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } # 将 [404] 错误交给 [/index.php] 处理,表示由 Laravel 渲染美观的错误页面。 error_page 404 /index.php; # URI 符合正则表达式 [\.php$] 的请求将进入此段配置 location ~ \.php$ { # 配置 FastCGI 服务地址,可以为 IP:端口,也可以为 Unix socket。 fastcgi_pass 127.0.0.1:9000; # 配置 FastCGI 的主页为 index.php。 fastcgi_index index.php; # 配置 FastCGI 参数 SCRIPT_FILENAME 为 $realpath_root$fastcgi_script_name。 fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; # 引用更多默认的 FastCGI 参数。 include fastcgi_params; } # 通俗地说,以上配置将所有 URI 以 .php 结尾的请求,全部交给 PHP-FPM 处理。 # 除符合正则表达式 [/\.(?!well-known).*] 之外的 URI,全部拒绝访问 # 也就是说,拒绝公开以 [.] 开头的目录,[.well-known] 除外 location ~ /\.(?!well-known).* { deny all; }}server { listen 80; server_name your_server_name; return 301 https://your_server_name$request_uri;}
如果遇到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跳转去掉即可。
# 安装mysql源 $ yum -y localinstall http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm $ yum repolist enabled | grep "mysql.*-community.*"# 安装Mysql $ yum -y install mysql-community-server install mysql-community-devel # 启动mysql $ service mysqld start # 检查mysql启动是否正常 $ service mysqld status 或者 ps -ef | grep mysql # 设置mysqld服务开机自启动 $ systemctl enable mysqld.service # 使用yum安装Mysql,启动会系统会自动生成一个随机的数据库密码,需要修改下 # 查看mysql的随机密码 $ grep 'temporary password' /var/log/mysqld.log # 终端登录Mysql $ mysql -hlocalhost -u root -p xxx # 修改密码 $ ALTER USER 'root'@'localhost' IDENTIFIED BY 'Yourpassword';
最后重启下nginx让配置生效 nginx -s reload
, 如果中间有问题记得查看下nginx的错误日志文件,很有用,基本坑都会记录在里面 /var/log/nginx/error.log
。
因为朋友这边是使用的聚石塔的RDS,其实是不需要安装数据库的了,不过还是简单写下Mysql的安装把,这里使用Mysql5.7为例,想要安装Mysql8的自行换下。
$ ps aux | grep php-fpm 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 apache 2873 0.0 0.5 552440 46508 ? S Sep07 0:22 php-fpm: pool www apache 2874 0.0 0.6 560740 52748 ? S Sep07 0:22 php-fpm: pool www...
安装完 Laravel 后,你可能需要给这两个文件配置读写权限:storage
目录和 bootstrap/cache
目录应该允许 Web 服务器写入。
这里需要给PHP-FPM运行角色的权限。
# 暴力一些 $ chown -R apache:apache /xxx/storage/$ chown -R apache:apache /xxx/bootstrap/cache/# 在给个755权限 $ chmod -R 755 /xxx/storage/$ chmod -R 755 /xxx/bootstrap/cache/
可以看到我这里子进程是一个 apache
用户在执行,所以需要把上面2个目录改成 apache
/etc/php-fpm.conf
에 있습니다. 🎜🎜php.ini
파일은 다음 위치에 있습니다. /etc/php는 기본적으로 ini
🎜🎜php.ini
파일에 수정이 필요한 일부 매개변수가 있습니다. 편집하고 검색 max를 사용하면 이 키워드를 사용하여 일부 구성에 대한 설명을 확인하고 수정할 수 있습니다. 메모리, 파일 크기, 실행 시간 등에 몇 가지 제한이 있습니다. 🎜🎜수정 후 <code>systemctl reload php-fpm
을 실행하면 됩니다. 🎜🎜🎜🎜Nginx 설치🎜rrreee🎜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
🎜🎜아래에 있습니다. 다음은 HTTPS에 대해 301 점프를 수행하는 간단한 서버 구성입니다. 필요하지 않은 경우 제거하세요. SSL 관련 부분을 확인하고 301 점프를 해보세요. 🎜rrreee🎜 마지막으로 nginx를 다시 시작하여 nginx -s reload
를 적용하세요. 문제가 있는 경우 nginx 오류 로그 파일을 확인하는 것이 매우 유용합니다. /var/log/nginx/error.log
에 기록됩니다. 🎜🎜🎜🎜Mysql 설치🎜🎜 친구가 Jushita의 RDS를 사용하고 있기 때문에 데이터베이스를 설치할 필요는 없지만, 여기서는 Mysql5.7을 예로 들어 간단히 적어보겠습니다. Mysql8을 설치하려면 자체적으로 교체할 수 있습니다. 🎜rrreee🎜🎜🎜Laravel 권한🎜🎜Laravel을 설치한 후 storage
디렉터리와 bootstrap/cache
디렉터리 두 파일에 대한 읽기 및 쓰기 권한을 구성해야 할 수도 있습니다. 웹 서버 쓰기가 허용되어야 합니다. 🎜🎜여기서 역할을 실행하려면 PHP-FPM 권한을 부여해야 합니다. 🎜rrreee🎜여기 하위 프로세스가 apache
사용자에 의해 실행되는 것을 볼 수 있으므로 위의 두 디렉터리를 apache
로 변경해야 합니다(어디인지는 모르겠습니다) 이 유령 사용자는) 생성됩니다. 아마도 php-fpm이 기본적으로 설치될 때 생성될 수 있습니다...). 🎜🎜해당 디렉토리 찾기🎜# 暴力一些 $ chown -R apache:apache /xxx/storage/$ chown -R apache:apache /xxx/bootstrap/cache/# 在给个755权限 $ chmod -R 755 /xxx/storage/$ chmod -R 755 /xxx/bootstrap/cache/
相关推荐:最新的五个Laravel视频教程
위 내용은 Centos7(비도커)에서 Laravel 환경을 구축하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!