1 2 3 4 5 ··· 11 下一页
摘要: 官方站点 https://nodejs.org/en/ https://nodejs.org/zh-cn/download/releases 安装方式 1. 下载 淘宝 Node.js 镜像 https://npmmirror.com/ https://registry.npmmirror.com/ 阅读全文
posted @ 2023-03-01 18:19 AlexG 阅读(18) 评论(0) 推荐(0) 编辑
摘要: # 免密执行指定指令 dns ALL= NOPASSWD: /usr/bin/systemctl restart dnsmasq user ALL= NOPASSWD: /usr/bin/systemctl restart php-fpm,/usr/bin/umount,/usr/bin/ user 阅读全文
posted @ 2023-02-10 13:22 AlexG 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 2xx - 成功。表示服务器成功地接受了客户端请求 3xx - 重定向。表示要完成请求,需要进一步操作。客户端浏览器必须采取更多操作来实现请求。例如,浏览器可能不得不请求服务器上的不同的页面,或通过代理服务器重复该请求 4xx - 请求错误。这些状态代码表示请求可能出错,妨碍了服务器的处理 5xx 阅读全文
posted @ 2022-08-29 09:06 AlexG 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 使用 jupyter notebook pip install jupyter ipyton # 启动 jupyter notebook # 更换主题 pip install jupyterthemes jt -l # 查看主题 ht -t chesterish # 应用主题 jt -r # --r 阅读全文
posted @ 2022-07-27 18:13 AlexG 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 1. 找到相应的队列, 点击进入详情 2. 找到Publish Message项,填写自定义数据 contentType application/json 3. 发送数据 4. 发送成功 5. 接收 阅读全文
posted @ 2022-06-22 11:34 AlexG 阅读(386) 评论(0) 推荐(0) 编辑
摘要: ssh执行远程命令,当使用到awk的时候总是报错,而sed和grep都没有问题 awk不支持远程执行。最近经过测试找到了解决此问题的方法。 举例:ssh 目标IP “ awk ‘{print $1 }’文件名 ” 说明:只要保证ssh使用的是“”,并且awk中的$加上转义即可 ssh -t -q - 阅读全文
posted @ 2022-06-15 09:34 AlexG 阅读(654) 评论(0) 推荐(0) 编辑
摘要: pm2是一个带有负载均衡功能的应用进程管理器,类似有Supervisor,forever supervisor 特点: 代码修改,实时重启 安装 npm install pm2 -g pm2 start app.js //启动js文件 pm2 start app.js --name my-api p 阅读全文
posted @ 2022-05-17 14:06 AlexG 阅读(638) 评论(0) 推荐(0) 编辑
摘要: MinIO 是在 GNU Affero 通用公共许可证 v3.0 下发布的高性能对象存储。它与 Amazon S3 云存储服务 API 兼容。使用 MinIO 为机器学习、分析和应用程序数据工作负载构建高性能基础架构。主要用于存储非结构化数据(如照片、视频、日志文件等)。 部署minio mkdir 阅读全文
posted @ 2022-04-19 19:08 AlexG 阅读(239) 评论(0) 推荐(0) 编辑
摘要: # for centos mini #yum -y install gcc-c++ intltool libssl-dev yum -y install gcc-c++ intltool openssl-devel wget https://files.cnblogs.com/files/firew 阅读全文
posted @ 2022-04-19 19:06 AlexG 阅读(277) 评论(0) 推荐(0) 编辑
摘要: composer 配置 阿里云 Composer 全量镜像 https://developer.aliyun.com/composer https://www.cnblogs.com/abcdefghi123/p/15670845.html 换http源,更改配置不要使用https加密连接 comp 阅读全文
posted @ 2022-03-30 18:24 AlexG 阅读(239) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 11 下一页