`
langzhe
  • 浏览: 286302 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Can't set long node name!\nPlease check your configuration

 
阅读更多

 

1、Can't set long node name!\nPlease check your configuration

昨天忙了一晚上,最后确定的还是hosts问题,这次不是少配置了,而是多配置了hosts。

192.168.0.223   client-3.langxwlabdns.com client-3

127.0.0.1       client-3

两台电脑比较发现,其中一台输入erl -name test (默认指定一个域)没有问题,其中一台就出错(Can't set long node name!)

检查了一下hostname 也没有错。

最后发现出错的电脑中hosts多了个127.0.0.1 client-3

显然 程序解释不了 两个。

 

今天又遇到这个问题了

 

把#127.0.0.1      centos localhost.localdomain localhost

#langxw add

改成

127.0.0.1        localhost.localdomain localhost centos


ok 了

 

2、这个问题引起的主要有两种

(1)host配置(2)erl 启动时偷懒造成的

   规规矩矩的 输入erl -name ss@test.com  是不会出现的(至少我没遇到国)

  如果输入erl -name ss 就会出现。但在host 中配置了 127.0.0.1 test.com 就可以偷懒输入了

 

 

1
0
分享到:
评论
4 楼 langzhe 2011-04-22  
dxm1986 写道
langzhe 写道
xzh_endless 写道
你可以尝试 erl -name test@www

这样做肯定没问题 主要是host问题

这样做肯定有问题,别的机子就联不上你这台机子了。

"别的机子连接不?"什么情况? 是别的机器上的erlang node连接不上吗? 相互配置host不就可以连接上了。
3 楼 dxm1986 2011-04-13  
langzhe 写道
xzh_endless 写道
你可以尝试 erl -name test@www

这样做肯定没问题 主要是host问题

这样做肯定有问题,别的机子就联不上你这台机子了。
2 楼 langzhe 2011-03-31  
xzh_endless 写道
你可以尝试 erl -name test@www

这样做肯定没问题 主要是host问题
1 楼 xzh_endless 2011-03-30  
你可以尝试 erl -name test@www

相关推荐

    C语言学生成绩管理系统

    printf("\nplease enter name which you want to search:"); scanf("%s",&name); printf("\n"); for(i=0;i;i++) if(strcmp(stu[i].name,name)==0) { printf("number name sex math English PE maolun ...

    2021春c语言上机考试题8套.doc

    fprintf(fp, "\nYour exam number is: [YOUR_EXAM_NUMBER]\n"); fclose(fp); return 0; } ``` **额外知识点:** - 筛选法(Sieve of Eratosthenes)用于查找素数,但题目中没有要求实现这一部分,只是作为算法...

    计算机二级C上机题库

    printf("\nPlease enter string s:"); scanf("%s", s); fun(s, t); printf("The result is: %s\n", t); } ``` - 输入字符串`s`。 - 调用`fun`函数处理字符串`s`。 - 输出处理后的字符串`t`。 #### 题目...

    二级C语言上机题库

    printf("\nPlease enter strings:"); scanf("%s", s); fun(s, t); printf("The result is: %s\n", t); } ``` #### 题目三:数字合并 ##### 核心知识点: 1. **数值操作**:掌握数值的分割与重组。 2. **数学...

    c算法以及经典的一些程序

    printf("\nplease input %d of %d\n", i + 1, N); printf("num:"); scanf("%s", stu[i].num); printf("name:"); scanf("%s", stu[i].name); for (j = 0; j ; j++) { printf("score%d.", j + 1); scanf("%d",...

    c语言程序 带头节点链表

    printf("\nplease input datds to the list:"); scanf("%ld",&x); while(x!=0) { p=(struct student *)malloc (sizeof(struct student)); p->num=x; p->next=NULL; q->next=p; q=p; scanf("%ld",&x); } ...

    对二叉排序树的操作集合

    cout << "\nPlease input the element you want to delete:" ; cin >> node; if (Search(root, node) == 0) { cout !" ; return root; } currentnode = root; if (root->data == node) { root->left = ...

    C语言上机一百例经典啊!!!

    printf("\nplease input year, month, day\n"); scanf("%d,%d,%d", &year, &month, &day); switch (month) { case 1: sum = 0; break; case 2: sum = 31; break; case 3: sum = 59; break; case 4: sum = 90...

    LPC1788单片机开发板资料包括Cadence及PDF版原理图+测试软件源码+技术文档资料.zip

    LPC1788单片机开发板资料包括Cadence及PDF版3原理图+测试软件... put_str_("\nPlease put 'ESC' Return use Menu !\n\r"); switch(rec_char){ case 0x08: put_str("\b \b"); break; case 0x1b: re

    进程调度 操作系统 进程控制模拟

    showMessage("\nplease input text:"); /*text=(char *)malloc(100);*/ text=show_input(); create(text); unscare_mouse(); } void keymode() { char choice; char *msg; /*printf("start:\n"); */ PCB_...

    C91-100.pdf

    printf("\nPlease input your guess:\n"); start = clock(); a = time(NULL); scanf("%d", &guess); while (guess != i) { if (guess > i) { printf("Please input a smaller number.\n"); scanf("%d", &...

    [C语言面试笔试]2023精选改错题.doc

    在这个问题中,我们需要编写一个函数fun,将字符串s的正序和反序进行连接,形成一个新串放在t所指的数组中。 ```c #include #include void fun (char * s, char * t){ int i, d; d = strlen(s); for (i = 0...

    C语言程序设计练习题含程序及参考答案.doc

    void fun(long s, long *t) { int d; long s1 = 1; *t = 0; while (s > 0) { d = s % 10; // 取个位数字 if (d % 2 != 0) { // 如果是个奇数 *t = d * s1 + *t; // 构建新数 s1 *= 10; // 准备下一位 } s ...

    京峰教育Linux Shell高级编程

    echo -e "\033[32mUsage:\nPlease Enter Your Backup Files or Directories\n--------------------------------------------\n\nUsage: { $0 /boot /etc}\033[0m" exit fi` 4. 自动化运维之路 本章还介绍了自动...

    C语言创建列表

    printf("\nplease input 5 data==>\n"); for (i = 0; i ; i++) { scanf("%d", &num); ptr->data = num; head = (link)malloc(sizeof(node)); head->next = ptr; ptr = head; } ptr = ptr->next; while ...

    c语言猜数字游戏源代码

    \nPlease type your first guess.\n"); // 提示用户输入猜测 scanf("%d", &b); // 输入用户第一次猜测的数字 while (b != -1) { // 当用户没有输入-1表示退出时,循环进行 if (b == a) { // 如果猜测正确 ...

    c语言10个经典小程序

    接着再比较t和z,如果t小于z则t保持不变,否则将z赋值给t。最终t中存储的就是三个数中的最小值。 **代码解析:** ```c main() { int x, y, z, t; scanf("%d,%d,%d", &x, &y, &z); /* 找出x和y中较小的一个 */ ...

    C语言经典程序100例之九

    /* 定义一个long int类型的时间变量 */ lt = time(NULL); /* 获取系统当前的时间和日期 */ printf(ctime(&lt)); /* 以英文格式输出时间 */ printf(asctime(localtime(&lt))); /* 转换为本地时间并输出 */ ...

    cC++资源 处理机调度

    printf("\nplease write the Advancement Number.:"); scanf("%d", &num); for (i = 0; i ; i++) { printf("\nAdvancement number No.%d:\n", i); p = getpch(PCB); printf("\nwrite the Advancement First ...

    c语言经典20例(初学者必学)

    printf("\nplease input year, month, day\n"); scanf("%d,%d,%d", &year, &month, &day); // 根据月份计算天数 switch (month) { case 1: sum = 0; break; case 2: sum = 31; break; // 其他月份省略 ...

Global site tag (gtag.js) - Google Analytics