第10 名字服务 中的 10.1.2节(131页)
erl -sname bilbo
rpc:call(gandalf@localhost, kvs, store, [weather, fine]). %出错
改成
rpc:call('gandalf@localhost', kvs, store, [weather, fine]).
节点名要加上单引号。
第10 名字服务 中的 10.1.2节(131页)
erl -sname bilbo
rpc:call(gandalf@localhost, kvs, store, [weather, fine]). %出错
改成
rpc:call('gandalf@localhost', kvs, store, [weather, fine]).
节点名要加上单引号。
相关文章: