读书笔记 读书笔记 依旧是那本erlang/OTP并发编程实战 买了纸质书懊悔不已 已打算再买图灵的电子版了...哎~~
在本机上建立一个node网络 和好几台计算机分别建一个node然后连接差不多是一样的
1.建立节点
要建立节点是很简单的(以下的实验都是在win下做得):
分别在三个cmd下输入
erl -sname a
erl -sname b
erl -sname c
当然还可以输入erl -name a 但在win下(至少是我这)会出错误:
{error_logger,{{2013,7,10},{21,25,11}},crash_report,[[{initial_call,{net_kernel,init,['Argument__1']}},{pid,<0.20.0>},{registered_name,[]},{error_info,{exit,{error,badarg},[{gen_server,init_it,6,[{file,"gen_server.erl"},{line,320}]},{proc_l
ib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,239}]}]}},{ancestors,[net_sup,kernel_sup,<0.10.0>]},{messages,[]},{links,[<0.17.0>]},{dictionary,[{longnames,true}]},{trap_exit,true},{status,running},{heap_size,6772},{stack_size,27},{reduc
tions,1921}],[]]}
{error_logger,{{2013,7,10},{21,25,11}},supervisor_report,[{supervisor,{local,net_sup}},{errorContext,start_error},{reason,{'EXIT',nodistribution}},{offender,[{pid,undefined},{name,net_kernel},{mfargs,{net_kernel,start_link,[[c2,longnames]]}
},{restart_type,permanent},{shutdown,2000},{child_type,worker}]}]}
{error_logger,{{2013,7,10},{21,25,11}},supervisor_report,[{supervisor,{local,kernel_sup}},{errorContext,start_error},{reason,{shutdown,{failed_to_start_child,net_kernel,{'EXIT',nodistribution}}}},{offender,[{pid,undefined},{name,net_sup},{m
fargs,{erl_distribution,start_link,[]}},{restart_type,permanent},{shutdown,infinity},{child_type,supervisor}]}]}
{error_logger,{{2013,7,10},{21,25,11}},crash_report,[[{initial_call,{application_master,init,['Argument__1','Argument__2','Argument__3','Argument__4']}},{pid,<0.9.0>},{registered_name,[]},{error_info,{exit,{{shutdown,{failed_to_start_child,
net_sup,{shutdown,{failed_to_start_child,net_kernel,{'EXIT',nodistribution}}}}},{kernel,start,[normal,[]]}},[{application_master,init,4,[{file,"application_master.erl"},{line,133}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,2
39}]}]}},{ancestors,[<0.8.0>]},{messages,[{'EXIT',<0.10.0>,normal}]},{links,[<0.8.0>,<0.7.0>]},{dictionary,[]},{trap_exit,true},{status,running},{heap_size,376},{stack_size,27},{reductions,117}],[]]}
{error_logger,{{2013,7,10},{21,25,11}},std_info,[{application,kernel},{exited,{{shutdown,{failed_to_start_child,net_sup,{shutdown,{failed_to_start_child,net_kernel,{'EXIT',nodistribution}}}}},{kernel,start,[normal,[]]}}},{type,permanent}]}
{"Kernel pid terminated",application_controller,"{application_start_failure,kernel,{{shutdown,{failed_to_start_child,net_sup,{shutdown,{failed_to_start_child,net_kernel,{'EXIT',nodistribution}}}}},{kernel,start,[normal,[]]}}}"}
Crash dump was written to: erl_crash.dump
Kernel pid terminated (application_controller) ({application_start_failure,kernel,{{shutdown,{failed_to_start_child,net_sup,{shutdown,{failed_to_start_child,net_kernel,{'EXIT',nodistribution}}}}},{k
过程如下
2.节点互联
接下去让节点间互联:
节点间:
nodes/0 %获得和当前node连接的所有node
net_adm:ping/1 %ping一个node 成功后就返回pong 失败返回pang(也许还有出错信息)
图中用a去连b 再用a去连c 然后就可以看到a b c都联通了
erlang 默认下用的是全连接的方式 如图:
3.cookie
cookie是保证连接顺利的一个重要因素
如果两个node的cookie相同 那么就可以连接(以上的abc都在本机中 c:\user\dell\.erlang.cookie中)
如果cookie不相同 也可以设置一下 设置之后的node就可以连接
还是以上的图 我们让节点a退出(在abc互联下 如果不退出直接用auth:set_cookie/1改掉a的cookie 那a的连接还是保持的)
a退出后 只有bc保持互联
可以看到 bc 的cookie是:
a的:
(a@dell-PC)6> q(). ok (a@dell-PC)7> C:\Users\dell>erl -sname a Eshell V5.10.2 (abort with ^G) (a@dell-PC)1> auth:set_cookie('abcdefg123456789'). true (a@dell-PC)2> net_adm:ping('b@dell-PC'). pang (a@dell-PC)3>
可见是pang 表示失败了
同时看一下b:
(b@dell-PC)2> auth:get_cookie(). 'MGEHUYAYGOAWXUPWFKDN' (b@dell-PC)3> =ERROR REPORT==== 10-Jul-2013::22:16:31 === ** Connection attempt from disallowed node 'a@dell-PC' **
不允许ab互联 当然 ac也不能互联了 现在能互联的只有 bc
这样可以保证节点之间的隔离 不至于发现一次误ping导致所有的节点都连在一起了
但如果一定要ab互联呢?? 这也是可以的
既可以从a 设置 也可以从b设置:
使用:
auth:set_cookie/2
代码如下:
(a@dell-PC)3> auth:set_cookie('b@dell-PC','MGEHUYAYGOAWXUPWFKDN'). true (a@dell-PC)4> net_adm:ping('b@dell-PC'). pong (a@dell-PC)5> =ERROR REPORT==== 10-Jul-2013::22:20:20 === ** Connection attempt from disallowed node 'c@dell-PC' ** (a@dell-PC)5> =ERROR REPORT==== 10-Jul-2013::22:20:20 === ** Connection attempt from disallowed node 'c@dell-PC' ** (a@dell-PC)5> =ERROR REPORT==== 10-Jul-2013::22:20:20 === ** Connection attempt from disallowed node 'c@dell-PC' ** (a@dell-PC)5> =ERROR REPORT==== 10-Jul-2013::22:20:20 === ** Connection attempt from disallowed node 'c@dell-PC' ** (a@dell-PC)5> =ERROR REPORT==== 10-Jul-2013::22:20:20 === ** Connection attempt from disallowed node 'c@dell-PC' ** (a@dell-PC)5> =ERROR REPORT==== 10-Jul-2013::22:20:20 === ** Connection attempt from disallowed node 'c@dell-PC' ** (a@dell-PC)5> =ERROR REPORT==== 10-Jul-2013::22:20:20 === global: 'a@dell-PC' failed to connect to 'c@dell-PC'
代码的步骤是在a中设置一下b的cookie 让a的node可以认可b的node 这样ab就可以互联
然后a ping了一下b 可见pong 说明ping通了 但是产生了错误
错误时因为a和c不能连接 最开始bc是连接的 现在通过修改a让a认可b a和b之间可以互联 但是a和c之间并没有验证:
(a@dell-PC)5> nodes().
['b@dell-PC']
b的nodes():
(b@dell-PC)3> nodes().
['c@dell-PC','a@dell-PC']
c的nodes():
(c@dell-PC)2> nodes().
['b@dell-PC']
如图:
(为什么觉得和手工配路由有点像啊....)
也就是各种"全双工“的拓扑只要你想建就建得起来,....不过一般没那么无聊吧 汗....
以上说过如果已经连通了 修改cookie不对连接产生影响 验证如下:
(b@dell-PC)3> nodes(). ['c@dell-PC','a@dell-PC'] (b@dell-PC)4> auth:set_cookie('123456'). true (b@dell-PC)5> net_adm:ping('a@dell-PC'). pong (b@dell-PC)6> net_adm:ping('c@dell-PC'). pong
总结一下命令吧:
net_adm:ping/1 %ping一个node pong就连接 pang表失败
auth:get_cookie/1 %获得当前node的cookie值
auth:set_cookie/1 %修改当前的node的cookie值(已连接下不会断开和其他node的连接)
auth:set_cookie/2 %第一个参数是另外一个node(node和cookie都是原子 用' ')第二个参数是那个node的cookie 用来让不同cookie的两个node连接
有错误一定要提啊...谢谢了