摘要: 利用 skip-grant-tables修改密码 1.拷贝my.cnf文件 docker cp 容器Id:/ect/my.cnf my.cnf 2修改my.cnf,在配置文件中加入skip-grant-tables 3.将修改后的my.cnf拷贝回去 docker cp my.cnf 容器Id:/e 阅读全文
posted @ 2025-06-24 14:26 是卡卡罗特啊 阅读(3) 评论(0) 推荐(0)
摘要: jenkins No payload or URI contains invalid entries. webhook钩子地址不对 HTTP ERROR 403 No valid crumb was included in the request 关闭csrf 执行脚本 hudson.securit 阅读全文
posted @ 2025-06-11 10:35 是卡卡罗特啊 阅读(3) 评论(0) 推荐(0)
摘要: version: "3.6" services: jenkins: container_name: "jenkins" image: "jenkinsci/blueocean" ports: - "50000:50000/tcp" - "9009:8080/tcp" volumes: - /var/ 阅读全文
posted @ 2025-06-05 18:07 是卡卡罗特啊 阅读(5) 评论(0) 推荐(0)
摘要: 系统默认安装的OpenSSL和OpenSSH版本低,导致各种安全漏洞。于是将OpenSSL升级至3.5.0版本,将OpenSSH升级至9.9p1版本。升级后如图所示: 首先下载包 OpenSSL 下载最新版本3.5 OpenSSH 下载 openssh-9.9p1.tar.gz 1.打开Telnet 阅读全文
posted @ 2025-05-12 17:39 是卡卡罗特啊 阅读(199) 评论(0) 推荐(0)
摘要: 下载rpm包 下载命令 wget http://mirrors.aliyun.com/centos/7/updates/x86_64/Packages/rpm-4.11.3-48.el7_9.x86_64.rpm wget http://buildlogs-seed.centos.org/c7.00 阅读全文
posted @ 2025-05-09 17:47 是卡卡罗特啊 阅读(24) 评论(0) 推荐(0)
摘要: MYSQL Row size too large (> 8126) 的错误 详情 ERROR 1118 Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format 阅读全文
posted @ 2022-05-23 14:42 是卡卡罗特啊 阅读(193) 评论(0) 推荐(0)
摘要: 访问属性时,其行为类似于字段。不同的是属性通过访问器实现;访问器用于定义访问属性或为属性赋值时执行的语句。 #属性语法 1.赋初始值 public class Person { public string FirstName { get; set; } = string.Empty; } 2.可为 阅读全文
posted @ 2022-04-19 21:21 是卡卡罗特啊 阅读(46) 评论(0) 推荐(0)
摘要: #方法签名 1.可选的访问级别,默认private 2.可选的修饰符 abstract sealed 3.返回值 4.方法名称 5.参数 ps:对于重载来说,返回类型不属于方法签名 #方法调用 1.位置自变量(1,2)和命名自变量(arg2:2,arg1:1) #继承与重写方法 1.所有类型都直接或 阅读全文
posted @ 2022-04-18 18:09 是卡卡罗特啊 阅读(23) 评论(0) 推荐(0)
摘要: #SqlServer修改默认端口号后的连接地址 使用客户端连接SqlServer的默认地址为address,port!!! 阅读全文
posted @ 2022-03-09 09:47 是卡卡罗特啊 阅读(100) 评论(0) 推荐(0)
摘要: 【问题】解决npm install时因无法访问github而报错 ##问题 npm install node-sass时因无法访问github而报错 ##解决 npm install --save node-sass --registry=https://registry.npm.taobao.or 阅读全文
posted @ 2022-02-24 15:16 是卡卡罗特啊 阅读(1275) 评论(1) 推荐(0)