如何在Laravel Forge服务器中将php版本更改为8?[已关闭]

xv8emn3q  于 2022-12-17  发布在  PHP
关注(0)|答案(2)|浏览(185)

**已关闭。**此问题为not about programming or software development。当前不接受答案。

此问题似乎与a specific programming problem, a software algorithm, or software tools primarily used by programmers无关。如果您认为此问题与another Stack Exchange site的主题有关,您可以留下评论,说明在何处可以回答此问题。
昨天关门了。
Improve this question
Ubuntu 18.04版,Nginx.
服务器曾经由Laravel Forge托管。现在-不,在自由游泳中。服务器上没有任何变化-Forge创建和配置的一切都保留了下来。
我看到PHP 8.1版本安装在/usr/bin/*php8.1路径下。我现在该如何更改php版本?直接在服务器上更改,无需Forge Web界面。谢谢。

iaqfqrcu

iaqfqrcu1#

进入你的服务器,点击左边菜单中的PHP。向下滚动页面,点击“安装”想要的版本。如果你想在这里输入链接说明,这里是完整的方法

jv4diomz

jv4diomz2#

终端内

sudo update-alternatives --config php

将显示所有已安装的版本,如果需要版本,请选择数字选项

There are 3 choices for the alternative php (providing /usr/bin/php).

  Selection    Path             Priority   Status
------------------------------------------------------------
* 0            /usr/bin/php8.0   80        auto mode
  1            /usr/bin/php7.2   72        manual mode
  2            /usr/bin/php7.4   74        manual mode
  3            /usr/bin/php8.0   80        manual mode

Press "enter" to keep the current choice[*], or type selection number: 2
update-alternatives: using /usr/bin/php7.4 to provide /usr/bin/php (php) in manual mode

检查当前php版本

php --version

相关问题