随笔分类 -  linux

摘要:问题: Key exchange failed. No compatible key exchange method. The server supports these methods: curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha 阅读全文
posted @ 2022-12-05 18:19 Chuan_Chen 阅读(2696) 评论(1) 推荐(1) 编辑
摘要:elasticsearch:8.5.0会默认开启安全认证,会自动生成1个elastic账号和密码,再第一次启动中可以看到。其中token生效时间30分钟。 在官方地址 中其实并没有做说明,所以需要重设密码 #1.进入docker里面 $docker exec -it elasticsearch8 / 阅读全文
posted @ 2022-11-17 11:25 Chuan_Chen 阅读(1125) 评论(0) 推荐(0) 编辑
摘要:1.查看openssl版本 [root@localhost ~]# openssl version OpenSSL 1.0.2k-fips 26 Jan 2017 2.下载指定版本的openssl软件 在下面网址:https://www.openssl.org/source/下载 后面的版本号可以换 阅读全文
posted @ 2021-09-18 11:23 Chuan_Chen 阅读(1561) 评论(2) 推荐(0) 编辑
摘要:因为生产系统环境限制,导致使用postman等接口测试工具,所以需要一个程序来后台测试。 GET请求: **python2.7: ** import urllib,urllib2 url='http://192.168.199.1:8000/mainsugar/loginGET/' textmod 阅读全文
posted @ 2020-09-10 22:54 Chuan_Chen 阅读(1224) 评论(0) 推荐(1) 编辑
摘要:对linux 主机配置定时清理 因为经常有一些脚本会执行超时,而脚本本身又没有配置超时的配置,所以就需要有个脚本来定时对超时的程序进行清理。 很简洁的小脚本,请查看 #!/bin/bash #by wangcc function write_log { if [ $# != 2 ] then ech 阅读全文
posted @ 2020-09-10 22:48 Chuan_Chen 阅读(169) 评论(0) 推荐(0) 编辑
摘要:ssh登录缓慢,差不多半分钟才登录成功,故对其进行追踪检查 ①ssh ip -vvv 或 ssh ip -v 用于检查ssh在哪个位置用时最长 然后发现在Entering interactive session 语句后等待时间最长,超过20秒,说明非ssh登录时密 码验证的问题 ②这样看不出啥问题, 阅读全文
posted @ 2020-08-08 21:27 Chuan_Chen 阅读(466) 评论(0) 推荐(0) 编辑
摘要:因为本周有一个是需要使用pandos做一个数据分析的需求,所以在这里做一下记录。 Python中用Pandas进行数据分析,最常用的就是Dataframe数据结构, 这里我们主要介绍Pandas如何读取数据到Dataframe。 1. Pandas读取Mysql数据要读取Mysql中的数据,首先要安 阅读全文
posted @ 2020-03-24 00:11 Chuan_Chen 阅读(6258) 评论(0) 推荐(0) 编辑
摘要:CentOS启动 ES 过程中遇到的问题 1. seccomp unavailable 错误 解决方法:elasticsearch.yml 配置 bootstrap.memory_lock: false bootstrap.system_call_filter: false 2. max file 阅读全文
posted @ 2020-03-22 13:52 Chuan_Chen 阅读(339) 评论(0) 推荐(0) 编辑
摘要:怎样才能快速的定位到并发高是由于磁盘io开销大呢?可以通过三种方式: 第一种:用 top 命令 中的cpu 信息观察 Top可以看到的cpu信息有: Tasks: 29 total, 1 running, 28 sleeping, 0 stopped, 0 zombie Cpu(s): 0.3% u 阅读全文
posted @ 2017-11-29 10:17 Chuan_Chen 阅读(182) 评论(0) 推荐(0) 编辑
摘要:思路一: echo $RANDOM|md5sum |tr "[0-9]" "[a-j]"|cut -c 2-11 RANDOM: linux内置的随机数变量 默认是5个 md5sum :使用MD5加密,变成随机的字母 tr :替换。把0-9 替换成a-j cut :截取出2-11位 1 #!/bin 阅读全文
posted @ 2017-07-23 22:15 Chuan_Chen 阅读(171) 评论(0) 推荐(0) 编辑

#waifu-toggle { background-color: #fa0; border-radius: 5px; bottom: 66px; color: #fff; cursor: pointer; font-size: 12px; right: 0; margin-right: -100px; padding: 5px 2px 5px 5px; position: fixed; transition: margin-right 1s; width: 60px; writing-mode: vertical-lr; } #waifu-toggle.waifu-toggle-active { margin-right: -40px; } #waifu-toggle.waifu-toggle-active:hover { margin-right: -30px; } #waifu { bottom: -1000px; right: 0; line-height: 0; margin-bottom: -10px; position: fixed; transform: translateY(3px); transition: transform .3s ease-in-out, bottom 3s ease-in-out; z-index: 1; } #waifu:hover { transform: translateY(0); } #waifu-tips { animation: shake 50s ease-in-out 5s infinite; background-color: rgba(236, 217, 188, .5); border: 1px solid rgba(224, 186, 140, .62); border-radius: 12px; box-shadow: 0 3px 15px 2px rgba(191, 158, 118, .2); font-size: 14px; line-height: 24px; margin: -30px 20px; min-height: 70px; opacity: 0; overflow: hidden; padding: 5px 10px; position: absolute; text-overflow: ellipsis; transition: opacity 1s; width: 250px; word-break: break-all; } #waifu-tips.waifu-tips-active { opacity: 1; transition: opacity .2s; } #waifu-tips span { color: #0099cc; } #waifu #live2d { cursor: grab; height: 300px; position: relative; width: 300px; } #waifu #live2d:active { cursor: grabbing; } #waifu-tool { color: #aaa; opacity: 0; position: absolute; left: -10px; top: 70px; transition: opacity 1s; } #waifu:hover #waifu-tool { opacity: 1; } #waifu-tool span { color: #7b8c9d; cursor: pointer; display: block; line-height: 30px; text-align: center; transition: color .3s; } #waifu-tool span:hover { color: #0684bd; /* #34495e */ } @keyframes shake { 2% { transform: translate(.5px, -1.5px) rotate(-.5deg); } 4% { transform: translate(.5px, 1.5px) rotate(1.5deg); } 6% { transform: translate(1.5px, 1.5px) rotate(1.5deg); } 8% { transform: translate(2.5px, 1.5px) rotate(.5deg); } 10% { transform: translate(.5px, 2.5px) rotate(.5deg); } 12% { transform: translate(1.5px, 1.5px) rotate(.5deg); } 14% { transform: translate(.5px, .5px) rotate(.5deg); } 16% { transform: translate(-1.5px, -.5px) rotate(1.5deg); } 18% { transform: translate(.5px, .5px) rotate(1.5deg); } 20% { transform: translate(2.5px, 2.5px) rotate(1.5deg); } 22% { transform: translate(.5px, -1.5px) rotate(1.5deg); } 24% { transform: translate(-1.5px, 1.5px) rotate(-.5deg); } 26% { transform: translate(1.5px, .5px) rotate(1.5deg); } 28% { transform: translate(-.5px, -.5px) rotate(-.5deg); } 30% { transform: translate(1.5px, -.5px) rotate(-.5deg); } 32% { transform: translate(2.5px, -1.5px) rotate(1.5deg); } 34% { transform: translate(2.5px, 2.5px) rotate(-.5deg); } 36% { transform: translate(.5px, -1.5px) rotate(.5deg); } 38% { transform: translate(2.5px, -.5px) rotate(-.5deg); } 40% { transform: translate(-.5px, 2.5px) rotate(.5deg); } 42% { transform: translate(-1.5px, 2.5px) rotate(.5deg); } 44% { transform: translate(-1.5px, 1.5px) rotate(.5deg); } 46% { transform: translate(1.5px, -.5px) rotate(-.5deg); } 48% { transform: translate(2.5px, -.5px) rotate(.5deg); } 50% { transform: translate(-1.5px, 1.5px) rotate(.5deg); } 52% { transform: translate(-.5px, 1.5px) rotate(.5deg); } 54% { transform: translate(-1.5px, 1.5px) rotate(.5deg); } 56% { transform: translate(.5px, 2.5px) rotate(1.5deg); } 58% { transform: translate(2.5px, 2.5px) rotate(.5deg); } 60% { transform: translate(2.5px, -1.5px) rotate(1.5deg); } 62% { transform: translate(-1.5px, .5px) rotate(1.5deg); } 64% { transform: translate(-1.5px, 1.5px) rotate(1.5deg); } 66% { transform: translate(.5px, 2.5px) rotate(1.5deg); } 68% { transform: translate(2.5px, -1.5px) rotate(1.5deg); } 70% { transform: translate(2.5px, 2.5px) rotate(.5deg); } 72% { transform: translate(-.5px, -1.5px) rotate(1.5deg); } 74% { transform: translate(-1.5px, 2.5px) rotate(1.5deg); } 76% { transform: translate(-1.5px, 2.5px) rotate(1.5deg); } 78% { transform: translate(-1.5px, 2.5px) rotate(.5deg); } 80% { transform: translate(-1.5px, .5px) rotate(-.5deg); } 82% { transform: translate(-1.5px, .5px) rotate(-.5deg); } 84% { transform: translate(-.5px, .5px) rotate(1.5deg); } 86% { transform: translate(2.5px, 1.5px) rotate(.5deg); } 88% { transform: translate(-1.5px, .5px) rotate(1.5deg); } 90% { transform: translate(-1.5px, -.5px) rotate(-.5deg); } 92% { transform: translate(-1.5px, -1.5px) rotate(1.5deg); } 94% { transform: translate(.5px, .5px) rotate(-.5deg); } 96% { transform: translate(2.5px, -.5px) rotate(-.5deg); } 98% { transform: translate(-1.5px, -1.5px) rotate(-.5deg); } 0%, 100% { transform: translate(0, 0) rotate(0); } } © 2022 GitHub, Inc. Terms Privacy Securi
点击右上角即可分享
微信分享提示