CDH添加HUE时数据库连接失败 查看cloudera-scm-server日志报错信息是:ImportError: libxslt.so.1: cannot open shared object file: No such file or directory 原因是centos缺少库文件,执行如下 ...
分类:
其他好文 时间:
2021-04-22 15:53:25
阅读次数:
0
dos命令学习 打开cmd命令的方式 开始+系统+,命令提示符 win键+R 输入cmd 以管理员身份运行 常用DOS命令 #盘符切换 #查看当前目录下的所有文件 dir #切换目录 cd change directory cd ..返回上一级的目录 #清理屏幕 cls (clear scream) ...
分类:
其他好文 时间:
2021-04-21 12:24:31
阅读次数:
0
C#中对xml数据的读取和写入: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; using System.Xml; using ...
通过官方Docker Registry在局域网内部搭建私有镜像注册中心. 1 - 拉取registry镜像 [anliven@anliven ~]$ cat /etc/system-release # 本机系统版本 CentOS Linux release 7.8.2003 (Core) [anli ...
分类:
其他好文 时间:
2021-04-15 12:32:53
阅读次数:
0
大量的等待事件,系统缓慢,从AWR看DBtime已经满负载了,主要等待事件如下 Enq: KO - Fast Object Checkpoint 占比DBTime的45%。通过ASH查询阻塞关系,等待该事件的用户SQL都被796会话阻塞,而该用户是CKPT进程。 SYS@orcl1>select s ...
分类:
其他好文 时间:
2021-04-14 12:37:28
阅读次数:
0
You are given a data structure of employee information, which includes the employee's unique id, their importance value and their direct subordinates' ...
分类:
其他好文 时间:
2021-04-13 12:31:50
阅读次数:
0
c语言入门教程–-6循环语句 c语言提供了以下几种循环类型。while循环for 循环do…while 循环 while循环 #include <stdio.h> int main () { /* 局部变量定义 */ int a = 10; /* while 循环执行 */ while( a < 2 ...
分类:
编程语言 时间:
2021-04-13 12:12:17
阅读次数:
0
前言 RabbitMQ 是使用Erlang语言开发的基于AMQP标准的开源实现,用于在分布式系统中存储转发消息,在易用性、扩展性、高可用性等方面表现不错 RabbitMQ的特点 1、保证可靠性(Reliability):使用持久化、传输确认、发布确认等机制 2、灵活的路由功能(Flexible Ro ...
分类:
其他好文 时间:
2021-04-13 11:48:47
阅读次数:
0
public static void LogToFile(string LogFilePath, string LogFileName, string doWhat, string msg) { string stmp = "时间:" + DateTime.Now.ToString("yyyy-MM ...
分类:
其他好文 时间:
2021-04-10 12:59:29
阅读次数:
0
学习大概就是不断迭代、重构的过程,不复习的学习是不负责任的,亦是无用的。 本系列博客主要作为个人记录,主要是贴图和代码,不做详细解释,以后有时间可能会重写;从下一篇开始上代码,代码可以运行是对自己的最低标准。 参考: 1.书籍1:《程序员的自我修养——链接、装载与库》 2.视频:https://ww ...
分类:
编程语言 时间:
2021-04-07 11:33:41
阅读次数:
0