上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 70 下一页
摘要: 1.配置SSL证书及nginx反向代理docker registry 搭建私有CA,初始化CA环境,在/etc/pki/CA/下建立证书索引数据库文件index.txt和序列号文件serial,并为证书序列号文件提供初始值。 # touch /etc/pki/CA/{index.txt,serial 阅读全文
posted @ 2019-09-16 21:20 littlevigra 阅读(766) 评论(5) 推荐(0) 编辑
摘要: 1.去教育部官网下载excel数据:http://www.moe.gov.cn/srcsite/A03/moe_634/201706/W020170616379651135432.xls 2.把xls数据转换成json格式 https://blog.csdn.net/aomeishangpin/ar 阅读全文
posted @ 2019-09-06 18:36 littlevigra 阅读(405) 评论(2) 推荐(0) 编辑
摘要: 1.以前都是用print来定位哪里报错,后面发现一个新的调试技巧 import pdb for i in range(nrows): if i < 20: content = table.row_values(i) print(content) pdb.set_trace() 2.if __name 阅读全文
posted @ 2019-09-06 16:00 littlevigra 阅读(397) 评论(0) 推荐(0) 编辑
摘要: ssh配置公私钥远程登录Linux主机 ssh-keygen cat id_rsa.pub >>authorized_keys cat authorized_keys 拿下id_rsa https://blog.csdn.net/lynnyq/article/details/79109992 2.s 阅读全文
posted @ 2019-09-05 11:54 littlevigra 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 1.执行curl -XGET 'localhost:9200/_cat/indices?v&pretty' 报401 2.修改配置xpack.security.enabled: false - true 3.就可以了 阅读全文
posted @ 2019-09-04 18:07 littlevigra 阅读(5764) 评论(0) 推荐(0) 编辑
摘要: 0.https://www.cnblogs.com/cheyunhua/p/9776627.html zkui它提供了一个管理界面,可以针对zookeepr的节点值进行CRUD操作,同时也提供了安全认证。 1.可用配置文件 <?xml version="1.0"?> <?xml-stylesheet 阅读全文
posted @ 2019-09-04 17:01 littlevigra 阅读(531) 评论(2) 推荐(0) 编辑
摘要: 1.备份TETST111hbase org.apache.hadoop.hbase.mapreduce.Export TEST111 /do1/hh2.drop 掉test111表 -- 只能drop,不能delete -- 坑3.重新创建表create table test111 (id varc 阅读全文
posted @ 2019-08-29 17:14 littlevigra 阅读(723) 评论(4) 推荐(0) 编辑
摘要: 1.在测试环境 hbase 全部集群的 hbase-site.xml 配置文件都加上这个配置,开启phoenix命名空间的自动映射 2.在测试环境在hbase集群内的 sqlline 客户端执行一下 3.打开namespace映射,对原来没有做namespace映射的应用是否有影响? 阅读全文
posted @ 2019-08-29 11:51 littlevigra 阅读(2670) 评论(0) 推荐(0) 编辑
摘要: 1.表象 2.深究原因,找到日志在 参考:https://yq.aliyun.com/articles/630486 http://hbase.group/question/200 阅读全文
posted @ 2019-08-28 23:37 littlevigra 阅读(1223) 评论(0) 推荐(0) 编辑
摘要: 1.hadoop的内存配置调优 mapred-site.xml的内存调整 <property> <name>mapreduce.map.memory.mb</name> <value>1536</value> </property> <property> <name>mapreduce.map.ja 阅读全文
posted @ 2019-08-28 15:36 littlevigra 阅读(785) 评论(1) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 70 下一页