2011-07-07 52 views
2

當我在我的機器上啓動ETOP我收到以下錯誤信息:如何使用完全限定名稱向erlang節點運行etop?

=ERROR REPORT==== 7-Jul-2011::11:30:09 === 
** System NOT running to use fully qualified hostnames ** 
** Hostname selilsx074.lmera.ericsson.se is illegal ** 
Error Couldn't connect to node '[email protected]' 

我想這個問題是,ETOP過程開始與一個簡短的名稱(-sname),因此無法與我想要監視的進程進行通信,該進程以完全合格的長名稱(-name)開始。

如何用長名稱啓動etop進程?

回答

2

好,因爲對於ETOP啓動腳本是這樣的:

#!/bin/sh 

NAME="etop" 
erl -sname $NAME -hidden -s etop -s erlang halt -output text [email protected] 

我想我的運氣使用。我有我自己寫的啓動腳本,如果我想使用一個完全合格的名字,是這樣的:通過允許您

#!/bin/sh 

NAME="etop" 
erl -name $NAME -hidden -s etop -s erlang halt -output text [email protected] 
+3

[entop(https://github.com/mazenharake/entop)處理是很好的直接在程序中使用'-sname'和'-name'標誌。 –

相關問題