我有一个基于Angular 1.3 + Meteor 1.5.2.2的流星应用程序。
我正在使用Ubuntu 17。
我想在使用Meteor Up进入实时服务器之前首先在本地计算机上部署我的Meteor App。
但是在运行mup setup
命令
martinihenry@martinihenry:~/mytestapp-prod/.deploy$ mup setup
Started TaskList: Setup Docker
[192.168.100.12] - Setup Docker
events.js:141
throw er; // Unhandled 'error' event
^
Error: connect ECONNREFUSED 192.168.100.12:22
at Object.exports._errnoException (util.js:907:11)
at exports._exceptionWithHostPort (util.js:930:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1078:14)
这是我的mup.json:
module.exports = {
servers: {
one: {
// TODO: set host address, username, and authentication method
host: '192.168.100.12',
username: 'root',
// pem: './path/to/pem'
// password: 'server-password'
// or neither for authenticate from ssh-agent
}
},
app: {
// TODO: change app name and path
name: 'mytestapp-prod',
path: '../',
servers: {
one: {},
},
buildOptions: {
serverOnly: true,
},
env: {
// TODO: Change to your app's url
// If you are using ssl, it needs to start with https://
ROOT_URL: '192.168.100.12:3000',
MONGO_URL: 'mongodb://localhost/meteor',
},
// ssl: { // (optional)
// // Enables let's encrypt (optional)
// autogenerate: {
// email: 'email.address@domain.com',
// // comma separated list of domains
// domains: 'website.com,www.website.com'
// }
// },
docker: {
// change to 'kadirahq/meteord' if your app is using Meteor 1.3 or older
image: 'abernix/meteord:base',
},
// Show progress bar while uploading bundle to server
// You might need to disable it on CI servers
enableUploadProgressBar: true
},
mongo: {
version: '3.4.1',
servers: {
one: {}
}
}
};
这里可能有什么问题?
答案 0 :(得分:0)
您的计算机上似乎没有运行sshd,或者您没有为root启用远程ssh访问。
您需要修改/etc/ssh/sshd_config
,并注释掉以下行:
PermitRootLogin without-password
在其下方,添加以下行:
PermitRootLogin yes
然后重启SSH:
service ssh restart
答案 1 :(得分:0)
我知道这已经很晚了,但这是一个已知且可重现的错误,因为inotfiy-watch使用了所有可用的手表插槽,虽然非常误导,但它实际上与磁盘空间完全无关。
轻松修复?增加观看位置:
sudo -i
echo 1048576 > /proc/sys/fs/inotify/max_user_watches
exit