次の手順では、ApacheをCentOS、Redhat Linux、Ubuntu、またはDebianディストリビューションの最新バージョンに更新する方法について詳しく説明します。
- RedHat®EnterpriseLinux、CentOS、Ubuntu、またはDebianを実行する専用サーバーまたは仮想マシン。
まず、バックアップ構成ファイルを抽出する必要があります。以下は、ファイルが見つかった可能性のある宛先ファイルです:Ubuntu y debian:
- /etc/apache2/httpd.conf
- /etc/apache2/apache2.conf
CentOS y Redhat:
- /etc/httpd/httpd.conf
- /etc/httpd/conf/httpd.conf
次のコマンドを実行して、構成ファイルをバックアップファイルにコピーします。
$ sudo cp /etc/apache2/httpd.conf /etc/apache2/httpd-backup.conf
EPELリポジトリをインストールします。
このガイドに従って、EPELリポジトリをインストールしてください。次の手順については、CentOSおよびRedHatへのEPELおよびIUSリポジトリのインストールを参照してください
注: この手順は、CentOSおよびRedHatベースのディストリビューションにのみ適用されます。
Apacheバージョンの更新
Apacheを更新するには、次のコマンドを実行します。
RHEL and CentOS based distributions:
# yum update httpd
Ubuntu and Debian based distributions:
# apt-get update && apt-get install apache2
or
# apt update && apt install apache2
Apacheサーバーを再起動するには、次のコマンドを実行できます
RHEL and CentOS based distributions:
# systemctl restart httpd
Ubuntu and Debian based distributions:
# systemctl restart apache2
Apacheのバージョンを確認する
インストールされたパッケージのバージョンを確認するには、次のコマンドを実行できます。
RHEL and CentOS based distributions:
#yum info httpd
or
#httpd -v
Ubuntu and Debian based distributions:
#dpkg -L apache2
or
#apache2 -v
コメントや質問をするには、[フィードバック]タブを使用します。私たちと会話を始めることもできます。