在 erlang/OTP 中,如何启动 appmon 来监视现有节点?
我有一个正在运行的 erlang 应用程序,使用此命令行启动
erl -boot start_sasl -config config/cfg_qa -detached -name peasy -cookie peasy -pa ./ebin -pa ./ebin/mochiweb -s peasy start
如果我启动一个新节点并运行 appmon:start(),即使使用相同的 cookie,“peasy”节点也不会显示。 webtool:start() 也会发生同样的情况
有人吗?
I have a running erlang application, launched with this command line
erl -boot start_sasl -config config/cfg_qa -detached -name peasy -cookie peasy -pa ./ebin -pa ./ebin/mochiweb -s peasy start
If I start a new node and run appmon:start(), the 'peasy' node won't show up, even if using the same cookie. The same happens with webtool:start()
Anyone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
成立。
与 erlang 一样,要让两个节点相互通信,您需要 ping:
然后就可以了:)
Found.
As always with erlang, to have two nodes speak to each other, you need to ping:
And off you go :)