第一種方法
第一步安裝ntp
yum -y install ntp
第二步:使用命令同步
ntpdate cn.pool.ntp.org
第三步:使用crontab定時計畫任務
crontab -e
加入以下資訊
00 12 * * * /sbin/ntpdate cn.pool.ntp.org 每隔12個小時自動同步 這個隨意 規則: 分、時、日、月、星期
第四步:重啟crontab計畫任務
/sbin/service crond reload
第二種方法
yum -y install ntp
3. ntp服務
vim /etc/ntp.conf
注釋:#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
新增:server 203.107.6.88
restrict 203.107.6.88 nomodify notrap noquery
server 202.112.29.82
restrict 202.112.29.82 nomodify notrap noquery
#ip為203.107.6.88,為廣東省深圳市阿里雲ntp伺服器
#ip為202.112.29.82,為東北大學ntp伺服器
重啟:systemctl restart ntpd.service
systemctl enable ntpd
ntpq -p
centos6的時間校驗yum -y install ntp
/etc/init.d/ntpd stop
/usr/sbin/ntpdate cn.pool.ntp.org
/etc/init.d/ntpd start
上面可以寫成乙個指令碼來自動校驗時間 Python使用chardet包自動檢測編碼
chardet charset detection 一旦自動檢測出編碼,就可以解碼了。解碼時遇到錯誤有三種處理方式 utf.py import chardet import os import sys def utf path,recursive false print path if os.pat...
Python使用chardet包自動檢測編碼
chardet charset detection 一旦自動檢測出編碼,就可以解碼了。解碼時遇到錯誤有三種處理方式 utf.py import chardet import os import sys def utf path,recursive false print path if os.pat...
centos8使用chrony作為NTP伺服器
centos8不在直接使用ntp,而是使用chrony作為時間同步,chrony既可以當伺服器端廣播時間,又可以作為客戶端同步時間 安裝 sudo dnf install chrony y sudo yum install chrony y centos8使用firewalld服務對防火牆進行管理。...