上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: version: "3" services: zookeeper: image: wurstmeister/zookeeper hostname: zookeeper_sasl container_name: zookeeper_sasl restart: always ports: - 32182 阅读全文
posted @ 2021-12-13 15:28 水木神舟10 阅读(2319) 评论(0) 推荐(0) 编辑
摘要: 最近需要用到带有鉴权的kafka,网上基本都是使用confluentinc的kafka,试了下有各种问题,因此使用 wurstmeister/zookeeper 和 wurstmeister/kafka 搭建了一个带有密码验证的kafka,简单记录下搭建的过程 1 配置ZOOKEEPER 1.1 新 阅读全文
posted @ 2021-12-01 17:56 水木神舟10 阅读(4851) 评论(11) 推荐(0) 编辑
摘要: 防火墙 1.查看当前系统打开的所有端口 firewall-cmd --zone=public --list-ports 2.开放端口,比如开放22端口 firewall-cmd --zone=public --add-port=22/tcp --permanent 重新载入一下防火墙设置,使设置生效 阅读全文
posted @ 2021-07-05 16:18 水木神舟10 阅读(59) 评论(0) 推荐(0) 编辑
摘要: CURL 发送POST请求 curl -H "Content-Type: application/json" -X POST -d '{"user_id": "123", "coin":100, "success":1, "msg":"OK!" }' "http://192.168.0.1:8001 阅读全文
posted @ 2021-06-22 11:50 水木神舟10 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 方法一、通过go get 对应的包到项目中 方法二、通过go mod管理解决: 1. cd到项目目录下,执行go mod init 项目名 2. 选中生成的go.mod文件右键,点击go mod tidy即可(也可以直接用命令go mod tidy执行一下既可) 阅读全文
posted @ 2021-02-04 16:25 水木神舟10 阅读(895) 评论(0) 推荐(0) 编辑
摘要: 在index页面加入以下js即可: <script> history.go(1); </script> 例如: <html> <head> <title>系统首页</title> <script language='javascript'> history.go(1); </script> <met 阅读全文
posted @ 2021-01-21 09:18 水木神舟10 阅读(265) 评论(0) 推荐(0) 编辑
摘要: Connection reset : 一般是客户端正在从服务器读数据时或者向服务器写数据时,服务器连接关闭,通过tcpdump抓包可以看到,返回了一个RST复位标志,导致连接重置。 导致此异常的原因,总结下来有三种情况: 1.服务器端偶尔出现了异常,导致连接关闭 解决方法: 采用出错重试机制 2.服 阅读全文
posted @ 2020-11-11 11:12 水木神舟10 阅读(57938) 评论(0) 推荐(1) 编辑
摘要: 最近遇到线上机器的日志报错:error message:[]Error log: thread pool is full 定位原因是httpclient创建连接后没有及时关闭, 使用httpClient.getConnectionManager().shutdown();只能执行一次,下次执行会报错 阅读全文
posted @ 2020-11-11 10:22 水木神舟10 阅读(1376) 评论(0) 推荐(0) 编辑
摘要: 多半是因为网络问题,可以查看服务器与其他相关服务网络是否互通 例如: 排查发现,部署的服务包与某一服务连接不上,导致启动服务卡住 阅读全文
posted @ 2020-09-23 16:24 水木神舟10 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 虚拟机环境:centos 7.8 镜像文件:http://mirrors.aliyun.com/centos/7/isos/x86_64/ 数据库版本:Oracle 12c R2 安装文件:linuxx64_12201_database.zip 安装文件地址: https://www.oracle. 阅读全文
posted @ 2020-07-23 17:18 水木神舟10 阅读(2923) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页