CentOS7版本安装ntp服务

centos从7.0以后,ntp做成了一个服务,也就是说可以运行一个守护进程来自动同步时间,而不用像5和6的版本一样把命令写入计划任务中,这个在做集群服务的时候非常有帮助。

安装ntp

[[email protected] ~]# yum install ntp ntpdate -y

配置文件/etc/ntp.conf

[[email protected] ~]# vim /etc/ntp.conf
#
server 0.asia.pool.ntp.org
server 1.asia.pool.ntp.org
server 2.asia.pool.ntp.org
server 3.asia.pool.ntp.org 

#保存退出

启动ntpd服务

[[email protected] ~]# systemctl start ntpd
[[email protected] ~]# systemctl enable ntpd

OK,时间NTP服务已经安装完毕。

时间: 2024-10-09 00:12:10

CentOS7版本安装ntp服务的相关文章

CentOS7.0 安装NTP服务器及思科交换机NTP同步

一.安装环境: CentOS 7  Linux version 3.10.0-229.el7.x86_64 ntp-4.2.6p5-19.el7.centos.x86_64 二.安装及配置 2.1 安装 NTP可以直接通过yum来安装,使用 rpm -qa ntp可以查看是否已安装ntp服务,如有安装可使用yum install ntp 来升级,当然也可以不用升级. 命令: yum install ntp  #安装NTP服务器 2.2 配置 cat /etc/ntp.conf # For mor

yum安装ntp服务

一.安装NTP软件包: yum -y install ntp /*yum安装NTP服务*/ chkconfig --add ntpd /*添加NTP*/ chkconfig ntpd on /*开机自启动NTP*/ 二.修改NTP配置文件: vi /etc/ntp.conf *************************************************************** # For more information about this file, see the

centos7.4安装samba服务

centos7.4安装samba服务 系统平台 CentOS Linux release 7.4.1708 (Core) 关闭防火墙,selinux 安装 samba-4.6.2-8.el7.x86_64 samba-client-4.6.2-8.el7.x86_64 配置/etc/samba/smb.conf 创建共享目录,本地目录权限和共享权限 创建系统用户与共享用户的密码 启动 smb.service 客户端访问共享服务器 [[email protected] ~]# cat /etc/r

CentOS7 下部署NTP服务供内网客户机使用

1.安装NTP服务# yum -y install ntp 2.修改 ntp配置# vi /etc/ntp.conf # 记录和上级时间服务器的时间差异,默认配置,保留driftfile /var/lib/ntp/drift #表示nomodify客户端可以同步时间restrict default nomodify # 允许本机的一切操作,默认策略,保留restrict 127.0.0.1restrict ::1 # 阿里云NTP服务可修改本NTP服务时间restrict ntp.aliyun.

CentOS7 下安装telnet服务

今天搞了下 Centos 7 下面升级 openssl 和 openssh ,顺便装了下 telnet # 安装 telnet 避免 ssh 无法登录 yum -y install xinetd telnet telnet-server # 允许 root 账号登陆 vi /etc/securetty # 末尾添加两行 pts/0 pts/1 # 添加防火墙端口 vi /etc/sysconfig/iptables -A INPUT -p tcp -m state --state NEW -m

在Centos7上安装git服务

前言 一开始,打算在Windows上安装git服务,折腾了一天,在Copssh(win2008.win7.win2003)上总是配置不成功,最终无功而返,最后只好先放弃Windows了,以后有时间再研究研究. 当然Windows版的还有其它软件可用,比如Gitstack.Gitblit等,不想搞Windows版的了,不是这个限制就是那个问题,麻烦多,所以直接上Linux版的. 下面一段是Linux工具,引用自http://blog.chinaunix.net/uid-15174104-id-38

linux centos7 安装ntp服务并启动,设置开机重启

yum list |grep ntpd yum -y install ntp systemctl start ntpd systemctl status ntpd systemctl enable ntpd systemctl list-unit-files|grep ntpd yum确认是否安装yum安装启动ntpd服务查看状态设置开机启动查看是否设置开机启动 原文地址:https://blog.51cto.com/weiruoyu/2453315

centos7 安装ntp服务并启动,设置开机重启

yum list |grep ntpd yum -y install ntp systemctl start ntpd systemctl status ntpd systemctl enable ntpd systemctl list-unit-files|grep ntpd yum确认是否安装yum安装启动ntpd服务查看状态设置开机启动查看是否设置开机启动 原文地址:https://blog.51cto.com/11263100/2453322

8.CentOS7下Openstack-Train版本安装--网络服务neutron(控制节点)

1.创建neutron数据库 [[email protected] ~]# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 918 Server version: 10.3.10-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, Maria