当前位置:首页 > 行业动态 > 正文

如何在linux下安装php

在Linux下安装PHP,可以使用包管理器如apt、yum或pacman。以Ubuntu为例,执行以下命令:,,“ bash,sudo apt update,sudo apt install php,“

在Linux下安装PHP的步骤如下:

1、更新系统软件包列表

“`

sudo aptget update

“`

2、安装Apache Web服务器(如果尚未安装)

“`

sudo aptget install apache2

“`

3、安装MySQL数据库(如果尚未安装)

“`

sudo aptget install mysqlserver

“`

4、启动Apache和MySQL服务

“`

sudo service apache2 start

sudo service mysql start

“`

5、下载PHP安装包

访问PHP官方网站(https://www.php.net/downloads.php)并选择适合您的Linux发行版的PHP版本,复制下载链接。

6、使用wget命令下载PHP安装包

“`

wget [下载链接]

“`

7、解压下载的PHP安装包

“`

tar xvf [下载的文件名]

“`

8、进入解压后的PHP目录

“`

cd [解压后的目录]

“`

9、配置PHP与Apache的集成

“`

sudo ./configure withapxs2=/usr/bin/apxs withmysqli=/usr/bin/mysql_config withopenssl withzlib enablezip enablembstring withcurl withgd withjpegdir=/usr withpngdir=/usr withfreetypedir=/usr withxmlrpc withxsl withmcrypt enablesoap enablecalendar enableexif enablesysvsem enableinlineoptimization withcurlwrappers enableintl enableopcache enablefpm withfpmuser=wwwdata withfpmgroup=wwwdata withpdo_mysql=mysqlnd withpdo_pgsql=pgsql withpdo_sqlite=sqlite3 withpdo_mysql=mysqlnd withpdo_pgsql=pgsql withpdo_sqlite=sqlite3

“`

10、编译并安装PHP

“`

sudo make && sudo make install

“`

11、复制Apache配置文件到适当的位置,并修改相关设置以启用PHP模块,可以使用以下命令进行复制和修改:

“`

sudo cp /etc/apache2/sitesavailable/default /etc/apache2/sitesavailable/mywebsite.conf

sudo nano /etc/apache2/sitesavailable/mywebsite.conf

“`

在<Directory>标签中添加以下行:

“`

DirectoryIndex index.php index.html index.htm index.nginxdebian.html index.nginxdebian.chunked index.nginxdebian.gz index.txt

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !f

RewriteRule ^ index.php [QSA,L]

</IfModule>

“`

保存文件并退出编辑器,然后启用新站点并重启Apache服务:

“`

sudo a2ensite mywebsite && sudo service apache2 restart

“`

12、现在,您已经在Linux上成功安装了PHP,可以通过创建一个PHP文件来测试它是否正常工作,创建一个名为info.php的文件,并在其中添加以下内容:

“`php

<?php phpinfo(); ?>

“`

将此文件放置在Apache的网站根目录中,然后在浏览器中访问该文件的URL,http://localhost/info.php,您应该能够看到PHP的信息页面,这表明PHP已成功安装并正在运行。

0