上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 46 下一页
摘要: 1. 安装第三方库 pip install websocket pip install websocket-client 2. 实战 import time from websocket import create_connection url = 'ws://192.168.1.100:8888/ 阅读全文
posted @ 2022-01-18 19:48 代码诠释的世界 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 1. 在哪里 apt-get install apps 这样的命令,一般会将下载文件放在 /var/cache/apt/archives目录下,然后安装。 2. 如何清理 apt-get clean删除/var/cache/apt/archives/ 和 /var/cache/apt/archive 阅读全文
posted @ 2022-01-14 11:10 代码诠释的世界 阅读(1739) 评论(0) 推荐(0) 编辑
摘要: 1. 更新系统 sudo apt-get update sudo apt-get dist-upgrade sudo apt-get autoremove 2. 安装postfixadmin sudo apt install php7.2-fpm php7.2-cli php7.2-imap php 阅读全文
posted @ 2022-01-13 20:38 代码诠释的世界 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 1. shell脚本 #!/bin/bash echo 'some id_rsa content'>~/.ssh/id_rsa_mac chmod 600 ~/.ssh/id_rsa_mac eval `ssh-agent` ssh-add ~/.ssh/id_rsa ssh-add ~/.ssh/ 阅读全文
posted @ 2022-01-13 18:32 代码诠释的世界 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 1. 复制密钥到主机 复制到你自己win主机的 ssh目录, C:\Users\xxxx\.ssh\id_rsa_some,自己命个名 2. 添加密钥 报错: Error connecting to agent: No such file or directory 解决方法:【以管理员身份运行】运行 阅读全文
posted @ 2022-01-13 18:01 代码诠释的世界 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 由于开发给了个jar,本地搭建个环境 然后运行就报错error unable to access jarfile java -jar antenna-server-1.0.0-jar 实际是包名不对,不是“-”, 应该是“.” 阅读全文
posted @ 2022-01-12 17:02 代码诠释的世界 阅读(871) 评论(0) 推荐(0) 编辑
摘要: 1. 官网 https://www.proofpoint.com/us/products/email-protection/open-source-email-solution 2. 使用qq/163/126免费个人邮箱,申请获取授权码 3. smtp 非ssl #!/bin/bash read - 阅读全文
posted @ 2022-01-12 14:37 代码诠释的世界 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 1. 默认打印是一行的 debug_logger.info(f'[rsp json] {rsp.json()}') 2022-01-10 20:38:53,108 | root | INFO | [rsp json] {'code': 200, 'msg': 'SUCCESS', 'data': { 阅读全文
posted @ 2022-01-10 20:45 代码诠释的世界 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 1. 开始我是用sudo去安装, 可能用到了系统环境 sudo pip3 install -r requirements.txt 2. 改成如下即可 pip3 install -r requirements.txt --user 阅读全文
posted @ 2022-01-10 17:27 代码诠释的世界 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 由于帐号并没有开启免密码导致的 假设当前帐号为jenkins 1 打开sudoers sudo vim /etc/sudoers 2 添加免密码 jenkins ALL = NOPASSWD: ALL 阅读全文
posted @ 2022-01-10 17:09 代码诠释的世界 阅读(160) 评论(0) 推荐(0) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 46 下一页