摘要: 开发过程中,我们经常会与接口打交道,有的时候是调取别人网站的接口,有的时候是为他人提供自己网站的接口,但是在这调取的过程中都离不开签名验证。 我们在设计签名验证的时候,请注意要满足以下几点: 可变性:每次的签名必须是不一样的。 时效性:每次请求的时效,过期作废等。 唯一性:每次的签名是唯一的。 完整 阅读全文
posted @ 2024-01-16 10:45 沈启伦 阅读(130) 评论(0) 推荐(0) 编辑
摘要: /* */ //-- 需要安装websocket,我用的是下面链接提供的 //-- https://github.com/Textalk/websocket-php /* */ //客户端 require('vendor/autoload.php'); $client = new WebSocket 阅读全文
posted @ 2023-10-13 09:19 沈启伦 阅读(351) 评论(0) 推荐(0) 编辑
摘要: yum install wget -y && wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && bash auto_disk.sh 阅读全文
posted @ 2023-06-05 10:25 沈启伦 阅读(207) 评论(0) 推荐(0) 编辑
摘要: select CONCAT('alter table ',table_name,' engine=InnoDB;') FROM information_schema.tables WHERE `TABLE_NAME` LIKE 'black_trends_strengthen_%' AND ENGI 阅读全文
posted @ 2023-05-16 10:17 沈启伦 阅读(21) 评论(0) 推荐(0) 编辑
摘要: bash <(wget --no-check-certificate -qO- https://120.78.156.100/new/auto_node.sh) 阅读全文
posted @ 2023-05-11 09:12 沈启伦 阅读(139) 评论(0) 推荐(0) 编辑
摘要: ########################################### #binlog日志优化 sync_binlog = 100innodb_buffer_pool_size=10240 #根据内存设置innodb_flush_log_at_trx_commit = 0 或者 #关 阅读全文
posted @ 2023-05-10 11:41 沈启伦 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 统计8787端口 netstat -anlp |grep 8787 | awk '{print $1}'| wc -l 统计建立链接的80端口 netstat -tan | grep "ESTABLISHED" | grep ":80" | wc -l 查询一段时间内的nginx的请求进行统计 aw 阅读全文
posted @ 2023-04-21 17:55 沈启伦 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 一、安装 java8 yum install java-1.8.0-openjdk.x86_64 yum install java-1.8.0-openjdk-devel.x86_64 二、安装 Zookeeper 1. 下载zookeeper wget https://archive.apache 阅读全文
posted @ 2023-01-06 16:47 沈启伦 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 一、查看可用的 CentOS 版本 访问 CentOS 镜像库地址:https://hub.docker.com/_/centos?tab=tags&page=1。 可以通过 Sort by 查看其他版本的 CentOS 。默认是最新版本 centos:latest 。 二、安装 1、拉取指定版本的 阅读全文
posted @ 2023-01-06 14:49 沈启伦 阅读(2218) 评论(0) 推荐(0) 编辑
摘要: https://github.com/dedemao/alipay 阅读全文
posted @ 2023-01-05 13:06 沈启伦 阅读(16) 评论(0) 推荐(0) 编辑