我正在尝试在新的Ubuntu 16.04安装上部署流星应用程序。在尝试了几种方法但没有成功之后,我现在尝试使用systemd来使用https://github.com/sean-stanley/meteor-up/中的meteor-up,这是一个为这个Ubuntu版本创建的版本。
不幸的是,我无法让它工作,mongodb安装存在问题 - 当我运行mup setup
时收到以下错误消息:
gpg: requesting key EA312927 from hkp server keyserver.ubuntu.com
gpg: key EA312927: public key "MongoDB 3.2 Release Signing Key <packaging@mongodb.com>" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
debconf: unable to initialize frontend: Dialog
debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
dpkg-preconfigure: unable to re-open stdin:
sudo: stop: command not found
sudo: start: command not found
我做了一些研究以弄清楚如何解决这个问题,我发现设置DEBIAN_FRONTEND=noninteractive
可能会解决这个问题。但事实并非如此。
我通过在服务器shell上键入export DEBIAN_FRONTEND=noninteractive
来测试它,然后在我的本地计算机上重新运行mup setup
命令,但没有运气,错误消息仍然存在。
我是否将此变量设置错误或是否存在另一种绕过此错误的方法?