随笔分类 -  工具

上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页

Cascalog了解
摘要:Cascalog一种能使在Hadoop上使用Clojure处理数据变得简单直观的工具。 Cascalog综合了两大顶尖技术:Clojure和Hadoop,同时让Datalog焕发青春。 Cascalog的特点是高性能、灵活和鲁棒。 阅读全文

posted @ 2017-06-11 11:48 荣锋亮 阅读(326) 评论(0) 推荐(0) 编辑

一款直接时空处理分析的开源数据库---geomesa
摘要:一款直接时空处理分析的开源数据库 geomesa,可用于交通轨迹数据存储分析等相关领域, 在分布式列数据库的基础上进行扩展,目前支持Accumulo, HBase, Cassandra, and Kafka等作为底层存储。 地址链接: http://www.geomesa.org/ 一款直接时空处理 阅读全文

posted @ 2017-06-10 20:44 荣锋亮 阅读(1867) 评论(0) 推荐(0) 编辑

drill 试用
摘要:1. 下载 http://drill.apache.org/ 2. 启动本地模式 http://drill.apache.org/ 2. 启动本地模式 bin/sqlline -u jdbc:drill:zk=local 3. 查询数据 bin/sqlline -u jdbc:drill:zk=lo 阅读全文

posted @ 2017-05-31 07:35 荣锋亮 阅读(239) 评论(0) 推荐(0) 编辑

spec.template.spec.initContainers[1].securityContext.privileged: Forbidden: disallowed by policy 问题解决
摘要:主要是执行系统特权应用解决方法: api server controller-manager 加上 --allow-privileged=true 即可 之后重启服务 阅读全文

posted @ 2017-05-30 15:53 荣锋亮 阅读(542) 评论(0) 推荐(0) 编辑

cockpit 使用(集成docker && k8s 管理)
摘要:1. yum 安装 sudo yum install cockpit 2. 允许启动 sudo yum install cockpit 2. 允许启动 sudo systemctl enable --now cockpit.socket 3. 可选的插件 sudo systemctl enable 阅读全文

posted @ 2017-05-27 22:35 荣锋亮 阅读(4844) 评论(0) 推荐(0) 编辑

Cockpit 服务化管理工具
摘要:Cockpit 是红帽开发的网页版图像化服务管理工具,优点是无需中间层,且可以管理多种服务。 根据其项目主站描述,Cockpit 有如下特点: 从易用性考虑设计,方便管理人员使用,而不是仅仅的终端命令按钮化。 不会打乱已有终端或脚本服务配置,通过 Cockpit 启用的服务可以在终端停止,脚本运行的 阅读全文

posted @ 2017-05-27 21:05 荣锋亮 阅读(1208) 评论(0) 推荐(0) 编辑

java 二维码生成(vcard)
摘要:1. maven 依赖 <dependency> <groupId>com.googlecode.ez-vcard</groupId> <artifactId>ez-vcard</artifactId> <version>0.10.1</version> </dependency> <depende 阅读全文

posted @ 2017-05-26 14:29 荣锋亮 阅读(1008) 评论(0) 推荐(0) 编辑

Gixy Nginx 配置分析工具
摘要:项目简介 Gixy 是一款用来分析 Nginx 配置的工具。 Gixy 的主要目标是防止安全配置错误,并自动进行缺陷检测。 目前支持的 Python 版本是 2.7 和 3.5+ 。 免责声明:Gixy 仅在 GNU / Linux 上进行了很好的测试,其他操作系统可能会存在一些问题。 它能做什么 阅读全文

posted @ 2017-05-26 09:31 荣锋亮 阅读(618) 评论(0) 推荐(0) 编辑

Google、IBM和Lyft开源其大型微服务系统管理工具Istio
摘要:Istio 的优势 集群规模可视性:在故障状况出现时,运营人员需要利用多种工具以始终关注集群运行状况并分析微服务状态图表。Istio 项目能够监控与应用程序及网络活动相关的数据,利用 Prometheus 与 Grafana 对这部分数据加以渲染,而后将相关指标与日志记录发送至任何收集、聚合与查询系 阅读全文

posted @ 2017-05-25 22:30 荣锋亮 阅读(1031) 评论(0) 推荐(0) 编辑

nginx fastcgi 优化
摘要:fastcgi_cache_path /usr/local/nginx/fastcgi_cache levels=1:2 keys_zone=TEST:10m inactive=5m; fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fa 阅读全文

posted @ 2017-04-28 12:28 荣锋亮 阅读(440) 评论(0) 推荐(0) 编辑

mysql 用户管理
摘要:一, 创建用户: 命令:CREATE USER 'username'@'host' IDENTIFIED BY 'password'; 说明:username - 你将创建的用户名, host - 指定该用户在哪个主机上可以登陆,如果是本地用户可用localhost, 如果想让该用户可以从任意远程主 阅读全文

posted @ 2017-04-26 22:46 荣锋亮 阅读(252) 评论(0) 推荐(0) 编辑

nginx FastCGI错误Primary script unknown解决办法
摘要:解决方法: 修改 fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; 为: fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_para 阅读全文

posted @ 2017-04-26 22:24 荣锋亮 阅读(561) 评论(0) 推荐(0) 编辑

nginx php-fpm
摘要:1. nginx php-fpm yum install nginx yum install php-fpm yum install nginx yum install php-fpm 2. 配置 nginx.conf location ~ \.php$ { root /usr/share/ngin 阅读全文

posted @ 2017-04-26 22:24 荣锋亮 阅读(252) 评论(0) 推荐(0) 编辑

node 升级
摘要:npm install -g n npm update –g 阅读全文

posted @ 2017-04-25 20:00 荣锋亮 阅读(134) 评论(0) 推荐(0) 编辑

jenkins api 使用
摘要:1. java <dependency> <groupId>com.offbytwo.jenkins</groupId> <artifactId>jenkins-client</artifactId> <version>0.3.7</version> </dependency> <dependenc 阅读全文

posted @ 2017-04-11 09:15 荣锋亮 阅读(685) 评论(0) 推荐(0) 编辑

maven docker plugin 常见问题解决
摘要:1. maven 项目必须使用小写,不然会一直有500 的错误 500: HTTP 500InternalServerError 500: HTTP 500InternalServerError 2. docker server 连接数超了 Failed to execute goal com.sp 阅读全文

posted @ 2017-04-05 16:03 荣锋亮 阅读(10924) 评论(0) 推荐(0) 编辑

spring cloud feign 接口继承以及参数传递的问题
摘要:1. 优势 可以使用maven 进行访问,实现代码的共享,减少跨服务调用服务编写的问题 2. 使用 定义接口 publicinterfaceIUserService{ @RequestMapping(method =RequestMethod.GET, value ="/users/app",hea 阅读全文

posted @ 2017-03-31 23:04 荣锋亮 阅读(9154) 评论(0) 推荐(0) 编辑

luarocks 安装
摘要:1. linux 安装 wget https://luarocks.org/releases/luarocks-2.4.1.tar.gz tar zxpf luarocks-2.4.1.tar.gz cd luarocks-2.4.1 ./configure; sudo make bootstrap 阅读全文

posted @ 2017-03-25 22:13 荣锋亮 阅读(3132) 评论(0) 推荐(0) 编辑

几个开源ssg 技术方案
摘要:1. Nanoc 2. Middle Man App 3. Hexo 4. DocPad 5. Hugo 6. Jekyll 7. Octopress 8. Harp 9. Sculpin 10. Wintersmith 1. Nanoc 2. Middle Man App 3. Hexo 4. D 阅读全文

posted @ 2017-03-25 19:53 荣锋亮 阅读(340) 评论(0) 推荐(0) 编辑

安装 Ruby, Rails 运行环境
摘要:步骤1 - 安装 RVM RVM 是干什么的这里就不解释了,后面你将会慢慢搞明白。 $ gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 $ curl -sSL http 阅读全文

posted @ 2017-03-25 14:08 荣锋亮 阅读(421) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页

导航