我们在其中一台服务器上安装了运行Phabricator的程序。今天,我将按照"https://secure.phabricator.com/book/phabricator/article/upgrading/“升级说明中给出的标准步骤进行升级。
当我尝试使用systemctl start phabricator-phd启动pdh时,get失败。
错误是
ERROR: Unable to load libphutil. Update your PHP 'include_path' to include the parent directory of libphutil/.我尝试了其他不同的方法来启动它,但所有的都给出了相同的错误。希望有人能帮我解决这个问题。
发布于 2019-03-16 04:10:14
在arcanist/所在的文件夹中
git clone https://github.com/phacility/libphutil.git这解决了我的问题。
发布于 2020-03-20 04:29:38
使用git clone https://github.com/phacility/libphutil.git like @Youngjae Ji recommends不再起作用。现在来看一下回购。里面什么都没有!https://github.com/phacility/libphutil。然而,一种解决方法似乎是:
sudo apt install libphutil,然后使用dpkg -L libphutil查看它在系统中的位置。一旦你发现它在哪里(例如:/usr/share/libphutil),,在arcanist中象征性地链接到它,如下所示:ln -s /usr/share/libphutil path_to_arcanist/externals/includes。现在它应该可以工作了。
发布于 2017-07-26 02:29:01
通常,通过bin/phd restart重启phd。这行得通吗?如果是,则问题出在您的启动脚本。如果没有,那么Phabricator可能没有正确安装。
https://stackoverflow.com/questions/45278745
复制相似问题