ja:documentation:pandorafms:technical_annexes:18_php_8

PHP 7 から PHP 8 へのアップグレード

  • Open a terminal window with the root user and enter the following command:
  • root ユーザでターミナルウィンドウを開き、次のコマンドを入力します。
php --version

You will get an answer similar to the following:

次のような応答が得られます。

PHP 7.4.29 (cli) (built: Apr 12 2022 10:55:38) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
  • Configure the repositories:
  • リポジトリを設定します。
yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum -y install https://rpms.remirepo.net/enterprise/remi-release-7.rpm
yum -y install yum-utils
yum-config-manager --disable 'remi-php*'
yum-config-manager --enable remi-php80
  • Install PHP 8 and its dependencies:
  • PHP 8 とその依存ファイルをインストールします。
yum install -y \
 php php-mcrypt php-cli php-gd php-curl php-mysql \
 php-ldap php-zip php-fileinfo php-snmp php-mbstring \
 php-pecl-zip php-xmlrpc libxslt php-xml php-fpm
systemctl restart httpd
  • Verify the version installed with:
  • インストールされたバージョンを確認します。
php --version

You will get an answer similar to the following:

次のような応答が得られます。

PHP 8.0.19 (cli) (built: May 10 2022 08:07:35) ( NTS gcc x86_64 )
Copyright (c) The PHP Group
Zend Engine v4.0.19, Copyright (c) Zend Technologies

To upgrade to PHP 8 in RHEL 7 contact Pandora FMS support department.

RHEL 7 で PHP 8 にアップグレードするには、Pandora FMS サポート へ連絡ください。

  • Configure the repositories:
  • リポジトリを設定します。
dnf module reset php -y
dnf module enable php:remi-8.0
  • Install PHP:
  • PHP をインストールします。
dnf install -y php php-fpm
  • Install dependencies:
  • 依存ファイルをインストールします。
dnf install -y \
 php-cli php-fpm php-curl php-mysqlnd php-gd php-opcache php-zip \
 php-intl php-common php-bcmath php-imap php-imagick php-xmlrpc \
 php-json php-readline php-memcached php-redis php-mbstring php-apcu \
 php-xml php-dom php-redis php-memcached php-memcache
  • Restart php-fpm
  • php-ftm を再起動します。
systemctl restart php-fpm
  • Verify the version installed:
  • インストールしたバージョンを確認します。
php --version

You will get an answer similar to the following:

次のような応答が得られます。

PHP 8.0.19 (cli) (built: May 10 2022 08:07:35) ( NTS gcc x86_64 )
Copyright (c) The PHP Group
Zend Engine v4.0.19, Copyright (c) Zend Technologies

Pandora FMS ドキュメント一覧に戻る

  • ja/documentation/pandorafms/technical_annexes/18_php_8.txt
  • 最終更新: 2023/03/01 08:09
  • by 127.0.0.1