首页 > 其他分享 >ntpq返回值特别慢

ntpq返回值特别慢

时间:2023-11-24 17:55:49浏览次数:26  
标签:case 特别 resolve ntpq DNS np 返回值

原因:

It is possible that ntpq is trying to resolve DNS for the name of the NTP peers and that a misconfigured DNS is causing the timeout and delay of 5 minutes.

You can confirm that that's the case by asking it not to resolve DNS, using the ntpq -np command (the -n flag tells it not to resolve DNS.)

If that's indeed the case, you can then look into why resolving DNS for those IPs is not working (but that's a separate topic, probably deserves a specific question.)

解决办法:

ntpq -np

 

标签:case,特别,resolve,ntpq,DNS,np,返回值
From: https://www.cnblogs.com/xue0123/p/17854384.html

相关文章

  • C语言数据结构_查找并删除单链表中最大值结点并返回值
    代码实现1#include<stdio.h>2#include<stdlib.h>34typedefstructNode//定义一个结构体5{6floatdata;7structNode*next;8}Node;910Node*Chuangzao_LinkedList()//创建一个链表11{12Node*head=NULL;//......
  • 蓝桥杯 特别数的和
    #include <bits/stdc++.h>using namespace std;int main(){  int n,a,j,sum=0;  cin >> n;  for(int i=1;i<=n;++i)  {    a=i;    while(a)    {      j=a%10;      if(j==2 || j==0 || j==1 || j==9)      {......
  • Python——第三章:函数的返回值
    函数的返回值:函数执行之后.会给调用方一个结果.这个结果就是返回值关于return:    函数只要执行到了return.函数就会立即停止并返回内容.函数内的return的后续的代码不会执行    1.如果函数内没有return,此时外界收到的是None    2.如果写了re......
  • SpringMVC返回值
    字符串/***测试返回字符串*@parammodelmodel*@return返回的字符串,通过视图解析器调整到jsp页面*/@RequestMapping("/testString")publicStringtestString(Modelmodel){System.out.println("testString方法执行了。。。"......
  • MySQL - MySQL 占用内存涨得特别快?可能原因?解决方案
    https://www.processon.com/mindmap/655307fe6a2ff722ead8d9e4 ......
  • 数组的sort方法接受一个比较函数:compareFun(a, b); 如果返回的值>0,则调换a,b位置,即b的
    现有一组人员年龄的数据,要求将这些人员的年龄按照从小到大的顺序进行排列起来,要怎样来实现AfunctionnumberSort(a,b){returna-b;}vararr=newArray("23","6","12","35","76");document.write(arr.push(numberSort));BfunctionnumberSort(a,b){retu......
  • isNaN(1/0) 返回值是false
    任何数值除以0都会导致错误而终止程序执行。但是在JavaScript中,会返回出特殊的值,因此不会影响程序的执行。比0大的数除以0,则会得到无穷大,所以js用Infinity来显示出来。也就是1/0得到的是Infinity。isNaN(1/0)返回的是false。但是isNaN(0/0)返回的就是true......
  • 1 in [1] 返回值是false
    in操作符,对于数组属性需要指定数字形式的索引值来表示数组的属性名称(固有属性除外,如length)。所以说在这里,1in[1]并不是表示数字1在不在数组里。而是表示数组中含不含有1这个索引index值。数组长度为1,所以只含有的index值为0,这个表达式返回fasle。......
  • 【趣味Javascript】前端开发中不为人知的LHS和RHS查询,你真的弄明白了吗? 《1024程序
    ......
  • 引用不可作为局部变量的返回值
    1.概述由于引用实际上是指向被引用变量的一个隐式指针,而局部变量在返回后就会被销毁,我指向的内容被销毁了,这个隐式指针也就成了野指针,导致错误2.实例错误写法以下是我在运算符重载时使用引用作为局部变量返回值导致的问题:Person&operator+(Person&t);{Personp;p.mem_a......