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 就可以偷懒输入了
分享到:
相关推荐
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 ...
fprintf(fp, "\nYour exam number is: [YOUR_EXAM_NUMBER]\n"); fclose(fp); return 0; } ``` **额外知识点:** - 筛选法(Sieve of Eratosthenes)用于查找素数,但题目中没有要求实现这一部分,只是作为算法...
printf("\nPlease enter string s:"); scanf("%s", s); fun(s, t); printf("The result is: %s\n", t); } ``` - 输入字符串`s`。 - 调用`fun`函数处理字符串`s`。 - 输出处理后的字符串`t`。 #### 题目...
printf("\nPlease enter strings:"); scanf("%s", s); fun(s, t); printf("The result is: %s\n", t); } ``` #### 题目三:数字合并 ##### 核心知识点: 1. **数值操作**:掌握数值的分割与重组。 2. **数学...
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",...
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 = ...
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版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_...
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", &...
在这个问题中,我们需要编写一个函数fun,将字符串s的正序和反序进行连接,形成一个新串放在t所指的数组中。 ```c #include #include void fun (char * s, char * t){ int i, d; d = strlen(s); for (i = 0...
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 ...
echo -e "\033[32mUsage:\nPlease Enter Your Backup Files or Directories\n--------------------------------------------\n\nUsage: { $0 /boot /etc}\033[0m" exit fi` 4. 自动化运维之路 本章还介绍了自动...
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 ...
\nPlease type your first guess.\n"); // 提示用户输入猜测 scanf("%d", &b); // 输入用户第一次猜测的数字 while (b != -1) { // 当用户没有输入-1表示退出时,循环进行 if (b == a) { // 如果猜测正确 ...
接着再比较t和z,如果t小于z则t保持不变,否则将z赋值给t。最终t中存储的就是三个数中的最小值。 **代码解析:** ```c main() { int x, y, z, t; scanf("%d,%d,%d", &x, &y, &z); /* 找出x和y中较小的一个 */ ...
/* 定义一个long int类型的时间变量 */ lt = time(NULL); /* 获取系统当前的时间和日期 */ printf(ctime(<)); /* 以英文格式输出时间 */ printf(asctime(localtime(<))); /* 转换为本地时间并输出 */ ...
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 ...
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; // 其他月份省略 ...