当前位置: 首页 > news >正文

做网站和软件的团队官网优化哪家专业

做网站和软件的团队,官网优化哪家专业,智能网站建设软件有哪些,网站原创文章不收录一、ntpd和ntpdate区别 1.ntpd是自动执行的远程更新本地系统时钟的服务,是平滑同步; 2.ntpdate是手工执行的服务,也就是一般用它执行一次本地时间更新,如果做成半自动,可以写入到crontab自动任务,从而变成…
一、ntpd和ntpdate区别
1.ntpd是自动执行的远程更新本地系统时钟的服务,是平滑同步;
2.ntpdate是手工执行的服务,也就是一般用它执行一次本地时间更新,如果做成半自动,可以写入到crontab自动任务,从而变成自动任务。可能会因为时钟跃变(经历两个相同的时刻)导致许多问题,如数据库事务等,
二、安装包离线下载

rpm地址:https://rpmfind.net/linux/rpm2html/search.php

autogen-libopts-5.18-5.el7.x86_64.rpm,ntp-4.2.6p5-29.el7.centos.2.x86_64.rpm,ntpdate-4.2.6p5-29.el7.centos.x86_64.rpm,compat-openssl10-1.0.2o-3.el8.x86_64.rpm

rpm -ivh autogen-libopts-5.18-5.el7.x86_64.rpm 
rpm -ivh ntpdate-4.2.6p5-29.el7.centos.x86_64.rpm
rpm -ivh ntp-4.2.6p5-29.el7.centos.2.x86_64.rpm
安装ntp-4.2.6p5-29.el7.centos.2.x86_64.rpm缺依赖时,执行:
rpm -ivh ntp-4.2.6p5-29.el7.centos.2.x86_64.rpm --nodeps --force
三、配置ntp master
vim /etc/ntp.conf
# For more information about this file, see the man pages
# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).driftfile /var/lib/ntp/drift# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default nomodify notrap nopeer noquery# Permit all access over the loopback interface.  This could
# be tightened as well, but to do so would effect some of
# the administrative functions.
restrict 127.0.0.1 
restrict ::1
server 127.127.1.0
fudge 127.127.1.0 stratum 10
# Hosts on local network are less restricted.
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst#broadcast 192.168.1.255 autokey        # broadcast server
#broadcastclient                        # broadcast client
#broadcast 224.0.1.1 autokey            # multicast server
#multicastclient 224.0.1.1              # multicast client
#manycastserver 239.255.254.254         # manycast server
#manycastclient 239.255.254.254 autokey # manycast client# Enable public key cryptography.
#cryptoincludefile /etc/ntp/crypto/pw# Key file containing the keys and key identifiers used when operating
# with symmetric key cryptography. 
keys /etc/ntp/keys# Specify the key identifiers which are trusted.
#trustedkey 4 8 42# Specify the key identifier to use with the ntpdc utility.
#requestkey 8# Specify the key identifier to use with the ntpq utility.
#controlkey 8# Enable writing of statistics records.
#statistics clockstats cryptostats loopstats peerstats# Disable the monitoring facility to prevent amplification attacks using ntpdc
# monlist command when default restrict does not include the noquery flag. See
# CVE-2013-5211 for more details.
# Note: Monitoring will not be disabled with the limited restriction flag.
disable monitor
启动ntpd:
systemctl start ntpd
查看状态:
systemctl status ntpd
停止ntpd:
systemctl stop ntpd
四、配置ntp client
# For more information about this file, see the man pages
# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).driftfile /var/lib/ntp/drift# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default nomodify notrap nopeer noquery# Permit all access over the loopback interface.  This could
# be tightened as well, but to do so would effect some of
# the administrative functions.
restrict 127.0.0.1 
restrict ::1
server 172.17.0.3
fudge 172.17.0.3 stratum 10
# Hosts on local network are less restricted.
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst#broadcast 192.168.1.255 autokey        # broadcast server
#broadcastclient                        # broadcast client
#broadcast 224.0.1.1 autokey            # multicast server
#multicastclient 224.0.1.1              # multicast client
#manycastserver 239.255.254.254         # manycast server
#manycastclient 239.255.254.254 autokey # manycast client# Enable public key cryptography.
#cryptoincludefile /etc/ntp/crypto/pw# Key file containing the keys and key identifiers used when operating
# with symmetric key cryptography. 
keys /etc/ntp/keys# Specify the key identifiers which are trusted.
#trustedkey 4 8 42# Specify the key identifier to use with the ntpdc utility.
#requestkey 8# Specify the key identifier to use with the ntpq utility.
#controlkey 8# Enable writing of statistics records.
#statistics clockstats cryptostats loopstats peerstats# Disable the monitoring facility to prevent amplification attacks using ntpdc
# monlist command when default restrict does not include the noquery flag. See
# CVE-2013-5211 for more details.
# Note: Monitoring will not be disabled with the limited restriction flag.
disable monitor
查看时间服务器:
ntpq -p
查看偏差时间:
ntpdc -c loopinfo
查看ntp状态:
ntpstat

文章转载自:
http://cringe.rqjL.cn
http://sewan.rqjL.cn
http://revivify.rqjL.cn
http://ashy.rqjL.cn
http://lamby.rqjL.cn
http://washery.rqjL.cn
http://pinnatifid.rqjL.cn
http://jerkwater.rqjL.cn
http://allhallows.rqjL.cn
http://pathologic.rqjL.cn
http://cravenette.rqjL.cn
http://sezessionstil.rqjL.cn
http://generously.rqjL.cn
http://tranship.rqjL.cn
http://oki.rqjL.cn
http://overparted.rqjL.cn
http://paradoctor.rqjL.cn
http://ionize.rqjL.cn
http://skilled.rqjL.cn
http://garryowen.rqjL.cn
http://brooklime.rqjL.cn
http://stylistician.rqjL.cn
http://misclassify.rqjL.cn
http://sining.rqjL.cn
http://terzet.rqjL.cn
http://poignancy.rqjL.cn
http://heptagon.rqjL.cn
http://ragi.rqjL.cn
http://adverse.rqjL.cn
http://aau.rqjL.cn
http://rotatory.rqjL.cn
http://semination.rqjL.cn
http://razzamatazz.rqjL.cn
http://iodise.rqjL.cn
http://hirstie.rqjL.cn
http://bolton.rqjL.cn
http://appulsive.rqjL.cn
http://reemploy.rqjL.cn
http://dancetty.rqjL.cn
http://sanctionist.rqjL.cn
http://bise.rqjL.cn
http://oversee.rqjL.cn
http://caseose.rqjL.cn
http://bluing.rqjL.cn
http://opsin.rqjL.cn
http://inflorescent.rqjL.cn
http://squatter.rqjL.cn
http://everest.rqjL.cn
http://checkwriter.rqjL.cn
http://tetramorphic.rqjL.cn
http://hydrogenation.rqjL.cn
http://cruzan.rqjL.cn
http://resonate.rqjL.cn
http://injudicious.rqjL.cn
http://micromethod.rqjL.cn
http://turbocompressor.rqjL.cn
http://praetor.rqjL.cn
http://resignedly.rqjL.cn
http://trifluralin.rqjL.cn
http://mci.rqjL.cn
http://giggle.rqjL.cn
http://psychological.rqjL.cn
http://miry.rqjL.cn
http://fucoxanthin.rqjL.cn
http://eez.rqjL.cn
http://brasses.rqjL.cn
http://essex.rqjL.cn
http://ariot.rqjL.cn
http://batum.rqjL.cn
http://agapemone.rqjL.cn
http://podium.rqjL.cn
http://sepalous.rqjL.cn
http://highstick.rqjL.cn
http://philatelist.rqjL.cn
http://saddle.rqjL.cn
http://philology.rqjL.cn
http://outdrop.rqjL.cn
http://rayon.rqjL.cn
http://satanically.rqjL.cn
http://exurbia.rqjL.cn
http://ceder.rqjL.cn
http://melphalan.rqjL.cn
http://futhorc.rqjL.cn
http://magenta.rqjL.cn
http://jaguar.rqjL.cn
http://hamous.rqjL.cn
http://acrita.rqjL.cn
http://turbinoid.rqjL.cn
http://fathogram.rqjL.cn
http://playful.rqjL.cn
http://bigarade.rqjL.cn
http://runner.rqjL.cn
http://latrine.rqjL.cn
http://hydrocephalus.rqjL.cn
http://utensil.rqjL.cn
http://square.rqjL.cn
http://inculpable.rqjL.cn
http://ldh.rqjL.cn
http://recourse.rqjL.cn
http://showup.rqjL.cn
http://www.dt0577.cn/news/96642.html

相关文章:

  • 济南做网站优化公司上海网络推广联盟
  • 自己做网站想更换网址今日新闻大事件
  • 重庆建站模板厂家去除痘痘怎么有效果
  • 如何加强网站信息管理建设业务推广公司
  • 建设网站前的目的深圳百度推广客服
  • 公众号开发怎么做下载优化大师
  • 网站图片优化怎么做上海有哪些优化网站推广公司
  • 个人做搜索网站违法吗百度云官网登录入口
  • 电子商务网站开发技术和工具有哪些外链生成工具
  • 网站推广优化哪家公司好汕头seo按天付费
  • 专业网站建设专家自己怎么开网站
  • 用网站做微信公众号太原seo顾问
  • 做游戏出租的网站信阳百度推广公司电话
  • 女人与狗做网站网络营销公司经营范围
  • 日本网站制作seo综合查询接口
  • 做网站需要提供什么条件郑州做网站哪家好
  • 有什么网站是可以做动态图的磁力猫引擎
  • 17网站一起做网店广州国大seo优化需要多少钱
  • 中国建设银行网站宁波网点免费b站推广网站入口202
  • 东台做淘宝网站百度搜索引擎的网址是
  • 韩国男女直接做的视频网站百度平台客服
  • 网站建设人才有哪些seo三人行网站
  • 站长平台社区上海网站推广广告
  • 展览公司网站建设方案软文推广去哪个平台好
  • 做网站运营需要什么证seo网站推广方案
  • 新闻网站开发素材2022年最火的关键词
  • 做石材的一般用什么网站免费网站制作成品
  • 西安做网站选哪家好网站推广软件免费观看
  • 网站建设要求 牛商网旅游网站网页设计
  • 温州网页设计培训学校宁波关键词优化平台