摘要: 2021-05-13 10:42:18 环境 灰度 出了一个问题,之前端口好好的,今早突然接口无法访问了; 出了问题后用抓包工具Charles查看调用的哪个接口,查看接口,发现没有传入参数; 使用ApiPost调用,ApiPost报错(本身报错,一般这是接口问题造成的) 接着去服务器打印日志,发现没 阅读全文
posted @ 2021-05-13 11:43 蓝晓焰 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 系统 Centos 7.9 // 查访默认的区域名称 # firewall-cmd --get-default-zonepublic //添加开放8081端口 永久生效(permanent) # firewall-cmd --zone=public --add-port=8081/tcp --per 阅读全文
posted @ 2021-05-13 11:17 蓝晓焰 阅读(132) 评论(0) 推荐(0) 编辑
摘要: dir 查看当前目录下文件 相当于unix中 ls chdir 查看当前路径 相当于unix中 pwd 进入U盘 直接输入盘符,比如 D盘是U盘,直接输入 D: 回车 使用 PowerShell 查看进程 Get-Process mysqld 或 Get-Process my* 使用 cmd 管理员 阅读全文
posted @ 2021-05-12 14:52 蓝晓焰 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 打开终端输入以下命令,回车 xattr -r -d com.apple.quarantine /Applications/xxxx.app 如果上句执行后不行,再执行下句 codesign --force --deep --sign - /Applications/xxxx.app 阅读全文
posted @ 2021-05-11 18:51 蓝晓焰 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 多重窗口管理程序 screen 用于长久连接linux 安装 yum install -y screen screen -S config_1 新建一个叫config_1的窗口 screen -ls 列出当前所有的窗口 screen -r config_1 连接config_1窗口 参阅: http 阅读全文
posted @ 2021-05-08 18:50 蓝晓焰 阅读(84) 评论(0) 推荐(0) 编辑
摘要: w 查看当前连接用户 pkill -kill -t pts/0 踢出其他连接用户 参阅: https://www.cnblogs.com/ityunv/archive/2016/09/29/5918968.html 阅读全文
posted @ 2021-05-08 18:46 蓝晓焰 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 可通过 nginx -t 查看nginx配置文件位置 在 fastcgi_params 文件中 添加 fastcgi_param PHP_RUNTIME_ENVIRONMENT DEV; 重启nginx nginx -s reload php 获取环境变量 getenv('PHP_RUNTIME_E 阅读全文
posted @ 2021-04-28 10:29 蓝晓焰 阅读(434) 评论(0) 推荐(1) 编辑
摘要: php 重启 通过下面 命令查看本地php 安装版本 brew services list 然后执行下面命令重启 brew services restart php@7.4 nginx重启 sudo nginx -s reload 阅读全文
posted @ 2021-04-14 16:51 蓝晓焰 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 找到指定版本redis http://pecl.php.net/package/redis tar zxf redis-5.3.1.tgz cd redis-5.3.1 通过phpize生成编译configure配置文件 phpize 执行 php-config 获取 php-config 路径 p 阅读全文
posted @ 2021-04-14 16:49 蓝晓焰 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 高并发(秒杀活动) mysql 乐观锁、悲观锁 提前创建订单 阅读全文
posted @ 2021-04-06 19:07 蓝晓焰 阅读(29) 评论(0) 推荐(0) 编辑