records

ntp时间同步(centos7为chrony)

岁酱吖の 提交于 2021-01-05 06:24:37
NTP服务搭建 ntp 和 ntpdate 区别   1.两个服务都是centos自带的(centos7中不自带ntp)。ntp的安装包名是ntp,ntpdate的安装包是ntpdate。他们并非由一个安装包提供。   2.ntp守护进程为ntpd,配置文件是/etc/ntp.conf   3.ntpdate用于客户端的时间矫正,非NTP服务器可以不启动NTP。 简介: ntp 全名 network time protocol 。 NTP 服务器可以为其他主机提供时间校对服务。 环境准备:两台服务器,一台作为 NTP 服务器,另一台作为 client 端向服务器同步时间测试。   NTP服务器:156.0.26.6   client端:156.0.0.27 安装与配置:我们从配置文件的角度来讲解一下 ntp 的配置   # 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 #默认即可。driftfile用来指定记录本机与上层NTP server之间的频率误差。单位是百万分之一秒。      #

Percona-Tookit工具包之pt-stalk

泪湿孤枕 提交于 2021-01-03 21:34:08
Preface We have a lot of methods to diagnose problems in our system such as strace,pstack,gstack,gdb,pt-pmp,etc.But sometimes there will be some fitful performance issues which are not so easy to trace.Thus,pt-stalk may help us in diagnosing these kind of problems. Introduce pt-stalk is a tool to collect detail diagnostic data base on triggers you specified such as gdb,oprofile,strace,tcpdump.The trigger is not the conception of trigger in database.They're different at all.pt-stalk provides various options to collect comprehensive data you need.It's really useful and helpful in performance

2020-12-26:mysql中,表person有字段id、name、age、sex,id是主键,name是普通索引,age和sex没有索引。select * from person where i

夙愿已清 提交于 2020-12-28 09:34:36
2020-12-26:mysql中,表person有字段id、name、age、sex,id是主键,name是普通索引,age和sex没有索引。select * from person where id=1 and name=‘james’ and age=1 and sex=0。请问这条语句有几次回表? 福哥答案2020-12-26: 答案是没有回表。 一般题目是判断有没有回表,而这道题是要说出有几次回表。 刚开始以为会用到回表。后来想了想,没有回表。id是等值查询,顶多命中1条数据。然后再对这1条数据做name过滤,就这么1条数据,没必要回表查询,连我都能想到,mysql的作者更能想到,mysql没那么傻。 有什么不对的地方,请直接留言评论。 1.创建表和插入数据: – Table structure for person 表结构 DROP TABLE IF EXISTS person ; CREATE TABLE person ( id int(11) NOT NULL, name varchar(255) NOT NULL, age int(11) NOT NULL, sex tinyint(4) NOT NULL, PRIMARY KEY ( id ), KEY name ( name ) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; –

neo4j源码分析1-编译打包启动

我的梦境 提交于 2020-12-27 01:01:42
<div class="_con_l mcontent"><hr> <p>date: 2018-03-22 title: "neo4j源码分析1-编译打包启动" author: "邓子明" tags:</p> <pre class=" language-undefined"><code class=" language-undefined">- 源码 - neo4j - 大数据 </code></pre><p>categories:</p> <pre class=" language-undefined"><code class=" language-undefined">- 源码分析 </code></pre><hr> <h2 id="1-">1.打包</h2> <h3 id="1-community">1.打包community</h3> <p>进入community,neo4j-graphdb-api, 注释掉common的:</p> <pre class=" language-xml"><code class=" language-xml"><span class="token tag"><span class="token tag"><span class="token punctuation"><</span>plugin</span><span class=

YARN

旧时模样 提交于 2020-12-25 03:35:35
1. 什么是YARN Yet Another Resource Negotiator (另一种 资源 协调者),是一种新的Hadoop 资源 管理器,它是一个通用资源管理系统,可为上层应用提供统一的资源 管理和调度 。 2. YARN架构 ResurceManager(RM) :一个纯粹的调度器,专门负责集群中可用资源的分配和管理。 Container :分配给具体应用的资源抽象表现形式,包括内存、cpu、disk NodeManager(NM) :负责节点本地资源的管理,包括启动应用程序的Container,监控它们的资源使用情况,并报告给RM App Master (ApplicationMaster(AM)) :特定框架库的一个实例,负责有RM协商资源,并和NM协调工作来执行和监控Container以及它们的资源消耗。AM也是以一个的Container身份运行。 客户端(Client) :是集群中一个能向RM提交应用的实例,并且指定了执行应用所需要的AM类型 3. 如何编写YARN应用程序 Client 初始化并启动一个YarnClient Configuration yarnConfig = new YarnConfiguration(getConf()); YarnClient client = YarnClient.createYarnClient(); client

CRM系统的查找字段控件的过滤

耗尽温柔 提交于 2020-12-24 13:46:48
CRM如何过滤查找类型的控件 1.项目场景: 提示:在crm系统中过滤查找类型的控件 # 2.问题描述: :在一次做项目是发现查找类型的控件过滤在每次过滤时只是在原有的基础上过滤 而不是清空原有的过滤 使用当前的过滤:我原本是这样写的 setEntityOrzOrOffice(entityName: string, isSetFirstValue = false) { if (ent.type !== 1) return // 查找多对多关系 var odata = $select=${entityName}id&$filter=systemuserid eq ${util.trimID(ent.getUserId())} service.retrieveSync( new_systemuser_${entityName}set , odata, (data: any) => { console.log(data) if (data && data.value && data.value.length > 0) { if (data.value.length > 1) { // 需要赋值第一个时 this.setOrzOrOfficeValue(isSetFirstValue, data, entityName, false) // 多个则查找过滤 var ids = data

jsp+servlet搭建在线投票问卷系统

只愿长相守 提交于 2020-12-22 20:50:50
点赞再看,养成习惯 程序帮QQ:1022287044 开发环境准备: jdk1.8 tomcat8 mysql5.7 intellij IDEA 系统采用技术: jsp+ servlet mvc三层架构模式 jdbc jQuery+ajax ECharts 4.3.0 项目介绍 用户端 <br> 用户端可以查看问卷列表并参与问卷调查 查看个人参与的调查报告以及整个问卷情况 管理端 <br> 问卷的新增和维护 用户信息维护 项目设计 运行效果 登录 添加问卷 问卷投票列表 投票详情 数据库表 代码结构截图 关键代码: 添加问卷: public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException { String questionTitle = request.getParameter("questionTitle"); //问卷标题 String qId = request.getParameter("qId"); //问卷id Integer ops =Integer.valueOf(request.getParameter("ops"));//具体几组 String doType=request.getParameter("doType"); //操作类型

hadoop之hdfs命令详解

若如初见. 提交于 2020-12-22 07:15:07
本篇主要对hadoop命令和hdfs命令进行阐述,yarn命令会在之后的文章中体现 hadoop fs命令可以用于其他文件系统,不止是hdfs文件系统内,也就是说该命令的使用范围更广可以用于HDFS、Local FS等不同的文件系统。而hdfs dfs命令只用于HDFS文件系统; 一、hadoop命令 使用语法:hadoop [--config confdir] COMMAND #其中config用来覆盖默认的配置 ##command #子命令 fs run a generic filesystem user client version print the version jar <jar> run a jar file checknative [ -a|- h] check native hadoop and compression libraries availability distcp <srcurl> <desturl> copy file or directories recursively archive -archiveName NAME -p <parent path> <src>* <dest> create a hadoop archive classpath prints the class path needed to get the

PTA基础编程题目集(编程题38)

风格不统一 提交于 2020-12-19 06:05:06
7-1 厘米换算英尺英寸 如果已知英制长度的英尺foot和英寸inch的值,那么对应的米是(foot+inch/12)×0.3048。现在,如果用户输入的是厘米数,那么对应英制长度的英尺和英寸是多少呢?别忘了1英尺等于12英寸。 输入格式: 输入在一行中给出1个正整数,单位是厘米。 输出格式: 在一行中输出这个厘米数对应英制长度的英尺和英寸的整数值,中间用空格分开。 输入样例: 170 输出样例: 5 6 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include < string .h> 4 5 int main() 6 { 7 int x; 8 scanf( " %d " ,& x); 9 int inch = 0.394 * x; 10 printf( " %d %d " , inch/ 12 , inch% 12 ); 11 return 0 ; 12 } 7-2 然后是几点 有时候人们用四位数字表示一个时间,比如1106表示11点零6分。现在,你的程序要根据起始时间和流逝的时间计算出终止时间。 读入两个数字,第一个数字以这样的四位数字表示当前时间,第二个数字表示分钟数,计算当前时间经过那么多分钟后是几点,结果也表示为四位数字。当小时为个位数时,没有前导的零,即5点30分表示为530。注意,第二个数字表示的分钟数可能超过60

Oracle form 代码控制控件属性函数大全

老子叫甜甜 提交于 2020-12-18 17:52:01
需求:实现tab页的实时隐藏和显示 实现:SET_TAB_PAGE_PROPERTY('MAIN_TAB.RETS_PAGE',VISIBLE,property_off);/SET_TAB_PAGE_PROPERTY('MAIN_TAB.RETS_PAGE',VISIBLE,property_on); 以下为转载内容,Oracle提供了各种代码设置属性的函数,参数可以到form builder的联机帮助里面查找,原博客地址:http://blog.csdn.net/pan_tian/article/details/8434666 Build-In List · SET_APPLICATION_PROPERTY · SET_BLOCK_PROPERTY · SET_CANVAS_PROPERTY · SET_FORM_PROPERTY · SET_ITEM_PROPERTY · SET_ITEM_INSTANCE_PROPERTY · SET_LOV_PROPERTY · SET_MENU_ITEM_PROPERTY · SET_PARAMETER_ATTR · SET_RADIO_BUTTON_PROPERTY · SET_RECORD_PROPERTY · SET_RELATION_PROPERTY · SET_REPORT_OBJECT_PROPERTY · SET_TAB