linux修改服务器时间(LINUX系统下修改时间的一些常见命令)

CentOS 修改date系统时间查看和修改Linux的时间和时区1、查看当前时间、时区、日历# dateTue Dec 25 15:36:09 CST 2013# date -RTue, 25 Dec 2013 15:36:13 +0800# calDecember 2013Su Mo Tu We Th Fr Sa1 2 3 4 5 6 78 9 10 11 12 13 1415 16 17 18 19 20 2122 23 24 25 26 27 2829 30 312、修改服务器的时间1)修改日期的格式,时分时秒默认为 00:00:00# date -s 2013/12/25 // okWed Dec 25 00:00:00 CST 2013# date -s 2013-12-25 // okWed Dec 25 00:00:00 CST 2013# date -s 12/25/2013 // okWed Dec 25 00:00:00 CST 2013# date -s 25/12/2013 // errordate: invalid date ‘25/12/2013’2)修改时间的格式# date -s 15:50:30Tue Dec 25 15:50:30 CST 2013# dateTue Dec 25 15:50:31 CST 20133)写入到主板CMOS# clock -w# hwclock -w3、修改服务器的时区1)tzselect# tzselectPlease identify a location so that time zone rules can be set correctly.Please select a continent or ocean.1) Africa2) Americas3) Antarctica4) Arctic Ocean5) Asia6) Atlantic Ocean7) Australia8) Europe9) Indian Ocean10) Pacific Ocean11) none – I want to specify the time zone using the Posix TZ format.#? 5Please select a country.1) Afghanistan 18) Israel 35) Palestine2) Armenia 19) Japan 36) Philippines3) Azerbaijan 20) Jordan 37) Qatar4) Bahrain 21) Kazakhstan 38) Russia5) Bangladesh 22) Korea (North) 39) Saudi Arabia6) Bhutan 23) Korea (South) 40) Singapore7) Brunei 24) Kuwait 41) Sri Lanka8) Cambodia 25) Kyrgyzstan 42) Syria9) China 26) Laos 43) Taiwan10) Cyprus 27) Lebanon 44) Tajikistan11) East Timor 28) Macau 45) Thailand12) Georgia 29) Malaysia 46) Turkmenistan13) Hong Kong 30) Mongolia 47) United Arab Emirates14) India 31) Myanmar (Burma) 48) Uzbekistan15) Indonesia 32) Nepal 49) Vietnam16) Iran 33) Oman 50) Yemen17) Iraq 34) Pakistan#? 9Please select one of the following time zone regions.1) Beijing Time2) Xinjiang TimeTherefore TZ='Asia/Shanghai' will be used.Local time is now: Tue Dec 25 16:09:30 CST 2013.Universal Time is now: Tue Dec 25 08:09:30 UTC 2013.Is the above information OK?1) Yes2) NoYou can make this change permanent for yourself by appending the lineTZ='Asia/Shanghai'; export TZto the file '.profile' in your home directory; then log out and log in again.Here is that TZ value again, this time on standard output so that youcan use the /bin/tzselect command in shell scripts:Asia/Shanghai2)复制时区文件软链接到 /etc/localtimeln -sf /usr/share/zoneinfo/Asia/Chongqing /etc/localtime // 软链到东八区 – 重庆ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime // 软链到东八区 – 上海Linux 修改时间的命令date –s '2013-12-25 10:10:10'clock –w // 将日期写入CMOS,避免重启后失效hwclock –w // 将日期写入CMOS,避免重启后失效Linux时间修改3个命令date:修改系统当前的时间clock:修改CMOS时间(查看CMOS时间:clock -r)hwclock:修改系统硬件时间# dateTue Dec 25 15:32:22 CST 2013# clock -rTue 25 Dec 2013 03:32:27 PM CST -1.061780 seconds# clockTue 25 Dec 2013 03:32:31 PM CST -1.071987 seconds# hwclockTue 25 Dec 2013 03:32:35 PM CST -1.055773 secondshwclock 硬件时钟的用法hwclock –show // 查看硬件时钟hwclock –set –date="1/23/01 22:16:59" // 设置硬件时钟# hwclockTue 25 Dec 2013 03:53:28 PM CST -1.059641 seconds# hwclock –set –date='2013-12-25 03:53:38'硬件时间从根本上讲是CMOS时钟;而系统时间是由内核维护的,它是从1969年末(即传说中的标志Unix时代开端的那个拂晓)开始算起的累积秒数。在DOS或Mac系统中,起作用的是硬件时钟。遗憾的是,你可能已经发现了,绝大多数电脑时钟都是很不准确的。它们从根本上讲是由小型电池供电的警报器时钟,这种锂电池一般可持续供电三年左右,那时候你系统各大块差不多都已经过时了。而在Linux系统中,起作用的是系统时钟。在启动时,它靠读取硬件时钟获得计时起点,而不是靠记忆计时。你可以通过BIOS修改系统硬件时钟,或者如果你不想重启机器,那就用hwclock命令。硬件时钟通常被设置成全球标准时间(UTC),而将时区信息保存在 /usr/share/zoneinfo/ 或 /usr/share/lib/timezone 或在某些系统中可能是/usr/local/timezone 的目录下某个适当的文件中,然后用一个符号链接文件/etc/localtime指向它。例如:]# ll /etc/localtimelrwxrwxrwx. 1 root root 34 May 2 2013 /etc/localtime -> /usr/share/zoneinfo/Asia/ChongqingCentOS下的操作ln -sf /usr/share/zoneinfo/Asia/Chongqing /etc/localtime // 修正时区date –s '2011-11-23 22:34:10' // 设置时间clock –w // 将时间写入CMOSAWS EC2上修改RedHat系统时区及ntp对时有人说EC2上不需要进行对时,基于Xen的虚拟机的系统时间会跟宿主的时间保持一致,并且不需要运行ntpd服务,不过从运维的角度我们还是决定根据需要自己配置时区及对时。假设您AWS上的EC2实例是创建在新加坡,并且是面向东南亚用户,可以使用新加坡当地时间。具体步骤如下:1. 修改时区sudo cp /usr/share/zoneinfo/Asia/Chongqing /etc/localtime // 默认为UTC时间2. 配置ntp服务vim /etc/ntp.confAmazon EC2添加ntp服务器server 0.amazon.pool.ntp.org iburstserver 1.amazon.pool.ntp.org iburstserver 2.amazon.pool.ntp.org iburstserver 3.amazon.pool.ntp.org iburst3. 重启ntpd服务及设置自动启动/etc/init.d/ntpd startchkconfig ntpd on4. 查看ntp状态ntpstatntpq -p

本文出自快速备案,转载时请注明出处及相应链接。

本文永久链接: https://kuaisubeian.cc/33536.html

kuaisubeian