确保所有内容都已更新
yum update -y
安装基本实用程序包,其中一些可能已经安装
dnf install yum-utils -y
timedatectl set-timezone 'Asia/Shanghai'
重启系统
reboot
Rocky Linux附带了旧版本的Nginx,您需要下载官方Nginx存储库才能安装最新版本 创建并打开用于创建官方Nginx存储库的文件,/etc/yum.repos.d/nginx.repo
vi /etc/yum.repos.d/nginx.repo
将以下代码粘贴到其中保存
[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
[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
dnf install nginx -y
nginx -v
设置隐藏NGINX版本号,在nginx.conf文件找到http{}字段址其中加入:
server_tokens off;
systemctl enable nginx --now
对于我们的教程,我们需要使用Remi的存储库安装最新版本的PHP,第一步是获取Epel存储库
dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
dnf install https://rpms.remirepo.net/enterprise/remi-release-9.rpm
dnf module list php -y
dnf module reset php
dnf module enable php:remi-8.3
接下来,安装Neos所需的PHP及其扩展以及ImageMagick
dnf install -y php-fpm php-mbstring php-xml php-curl php-mysqlnd php-zip php-cli php-imagick ImageMagick php-intl php-gd
php --version
打开php.ini
expose_php = Off;
systemctl enable php-fpm.service
systemctl start php-fpm.service
systemctl status php-fpm.service
本文由 systemofdown 创作,采用 知识共享署名 3.0 中国大陆许可协议 进行许可。 可自由转载、引用,但需署名作者且注明文章出处。