最近,越來越多的人開始使用Linux作業系統作為他們的伺服器作業系統,其中Red Hat Enterprise Linux(紅帽企業Linux或簡稱RHEL)是最受歡迎的Linux發行版之一。 RHEL具有安全性,可靠性和穩定性,並被許多伺服器管理員和企業廣泛使用。在本文中,我們將介紹如何在Red Hat Enterprise Linux 7.4上安裝和設定PHP。
第一步:安裝並設定Apache Web伺服器
在安裝PHP之前,我們需要驗證Apache Web伺服器是否已安裝並執行。在RHEL 7.4上安裝和設定Apache Web伺服器的過程如下所示。
yum update -y
yum install httpd -y
systemctl start httpd systemctl enable httpd
第二步:安裝PHP
現在,我們已經成功地安裝並設定了Apache Web伺服器,讓我們繼續安裝並設定PHP。
yum install php php-mysql php-gd -y
systemctl restart httpd
vi /var/www/html/index.php
<?phpphpinfo(); ?>
以上是如何在Red Hat Enterprise Linux 7.4上安裝和設定PHP的詳細內容。更多資訊請關注PHP中文網其他相關文章!