Update CentOS 8

This commit is contained in:
Gamer4life 2020-11-10 10:13:19 -08:00 committed by GitHub
parent 85bda064ca
commit 13c27f069b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
# CentOS 8 # CentOS 8
In this guide we will install Pterodactyl v0.7.X — including all of it's dependencies — and configure our webserver to serve it using SSL. In this guide we will install Pterodactyl v1.X — including all of it's dependencies — and configure our webserver to serve it using SSL.
[[toc]] [[toc]]
::: tip ::: tip
This guide is based off the [official installation documentation](/panel/getting_started.md) but is tailored specifically for CentOS 8. This guide is based off the [official installation documentation](/panel/1.0/etting_started.md) but is tailored specifically for CentOS 8.
::: :::
## Install Requirements and Additional Utilities ## Install Requirements and Additional Utilities
We will install all of Pterodactyl's [required](/panel/getting_started.md#dependencies) dependencies and a few aditional utilities. We will install all of Pterodactyl's [required](/panel/1.0/getting_started.md#dependencies) dependencies and a few aditional utilities.
::: tip ::: tip
If you run `sestatus` and it shows `SELinux status: enabled` you should install the following packages for later If you run `sestatus` and it shows `SELinux status: enabled` you should install the following packages for later
@ -28,14 +28,14 @@ systemctl start mariadb
systemctl enable mariadb systemctl enable mariadb
``` ```
### PHP 7.2 ### PHP 7.4
We recommend the remi repo to get the latest php packages. We recommend the remi repo to get the latest php packages.
```bash ```bash
## Get dnf updates ## Get dnf updates
dnf update -y dnf update -y
## Install PHP 7.2 ## Install PHP 7.4
dnf install -y php php-common php-fpm php-cli php-json php-mysqlnd php-gd php-mbstring php-pdo php-zip php-bcmath php-dom php-opcache dnf install -y php php-common php-fpm php-cli php-json php-mysqlnd php-gd php-mbstring php-pdo php-zip php-bcmath php-dom php-opcache
``` ```
@ -129,4 +129,4 @@ The default Redis install is perfectly fine for the panel. If you have Redis alr
[running another Redis instance](https://community.pivotal.io/s/article/How-to-setup-and-run-multiple-Redis-server-instances-on-a-Linux-host). [running another Redis instance](https://community.pivotal.io/s/article/How-to-setup-and-run-multiple-Redis-server-instances-on-a-Linux-host).
## Installing the Panel ## Installing the Panel
Excellent, we now have all of the required dependencies installed and configured. From here, follow the [official Panel installation documentation](/panel/getting_started.md#download-files). Excellent, we now have all of the required dependencies installed and configured. From here, follow the [official Panel installation documentation](/panel/1.0/getting_started.md#download-files).