树莓派是常见的Linux系统的卡片电脑,在Linux上可以安装LNMP的环境。这里我们介绍如何在树莓派上安装Nginx和PHP-FPM及其扩展部件的环境。
第一步;先安装Nginx服务,通过下面命令即可安装。
apt-get install nginx
第二步;开始安装相对应的版本的PHP-FPM服务及其相关的插件。如下命令;
apt-cache search php7* 下面以安装7.4版为例
sudo apt-get install php7.??-fpm
sudo apt-get install php7.4-cli
sudo apt-get install php7.4-curl
sudo apt-get install php7.4-gd
sudo apt-get install php7.4-mcrypt
sudo apt-get install php7.4-cgi
sudo apt-get install php7.4-common
sudo apt-get install php-sqlite3
sudo apt-get install php7.4-mysql
第三步;完成上面安装后,就可以通过下面命令启动相关服务了。
/etc/init.d/nginx restart
/etc/init.d/php7.4-fpm restart
网友评论 comments