解决Debian下宝塔面板无法安装Nginx一例
我一直用CentOS比较顺手,今天尝试在Debian安装宝塔,再安装Nginx,发现安装Nginx失败。
查看安装日志 /tmp/panelExec.log
后发现,存在如下错误,导致安装脚本无法继续
./configure: error: the HTTP image filter module requires the GD library.
You can either do not enable the module or install the libraries.
大意就是http(nignx)需要GD库,正好GD库没有安装。
好吧,直接apt-get吧(CentOS和Debian的库名称不一样,找了半天……)
apt-get install libgd2-xpm libgd2-xpm-dev
再次安装Nginx,顺利通过