摘要: ![](https://img2024.cnblogs.com/blog/2073213/202403/2073213-20240314152807807-421369607.png) ![](https://img2024.cnblogs.com/blog/2073213/202403/2073213-20240314152954048-1409129714.png) ![](https://i 阅读全文
posted @ 2024-03-14 15:57 六月OvO 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 阿里云 AccessKey ID LTAI5tKTyBQnUaGDF5KgRz2u AccessKey Secret ono9ZPQSgTvNR0XTa9x6VrNGxv5G69 华为云 Access Key Id HENH3FFG84TRTWTOADFI Secret Access Key Shr 阅读全文
posted @ 2023-12-29 14:41 六月OvO 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1.查看 [root@iZbp1c5gb7kyc8hketev60Z modules]# yum list php73* |grep phalcon 2.安装 [root@iZbp1c5gb7kyc8hketev60Z modules]# yum install -y php73-php-phalc 阅读全文
posted @ 2023-12-07 14:14 六月OvO 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1、安装依赖 yum install glibc* -y 2、下载并设置权限 wget https://github.com/zhboner/realm/releases/download/v2.4.5/realm-x86_64-unknown-linux-musl.tar.gz tar -xvf 阅读全文
posted @ 2023-11-20 11:15 六月OvO 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 公司:上海佐疆科技有限公司 打家避个雷 原因:拖欠最后一个月工资没发 注意:有一年追诉期,过了就无法仲裁了 **切记** 带身份证 带身份证 带身份证 ###1.先到劳动仲裁大队(浦建路1619号),进去里面有个二维码,先扫码填写,预约。 ![](https://img2023.cnblogs.co 阅读全文
posted @ 2023-08-25 14:18 六月OvO 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 备份记录 ```bash #!/usr/bin/env bash srcUrl="10.2.67.244:9400" dstUrl="10.2.38.201:9400" # Get all indices indices_file=/opt/dump/indices curl -XGET "http 阅读全文
posted @ 2023-08-17 14:11 六月OvO 阅读(19) 评论(0) 推荐(0) 编辑
摘要: pipeline { agent{ label 'hw' } environment { VERSION = sh(script: "echo `date '+%Y%m%d%H%M%S'`", returnStdout: true).trim() } stages { stage('克隆代码'){ 阅读全文
posted @ 2023-04-25 11:38 六月OvO 阅读(64) 评论(0) 推荐(0) 编辑
摘要: ##可能原因 ###如果你连接的 mq 需要指定vhost,八成就是下面这个问题 ##解决方法 amqp.Dial("amqp://guest:guest@127.0.0.1:5672//dlyp") ###可以用下面这段代码测试 package main import ( "fmt" "githu 阅读全文
posted @ 2023-04-18 17:02 六月OvO 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 案例:读取文件内容 package main import ( "fmt" "os" ) func main() { // 打开文件 file, err := os.Open("G:\\test\\test.txt") if err != nil { fmt.Println("open file e 阅读全文
posted @ 2023-04-10 10:15 六月OvO 阅读(12) 评论(0) 推荐(0) 编辑
摘要: ###面向过程 package main import "fmt" func main() { // 声明一个变量,保存用户的输入 key := "" // 声明一个变量,查看是否退出程序 var status bool = true // 账户余额 var balance float64 = 10 阅读全文
posted @ 2023-03-25 15:51 六月OvO 阅读(9) 评论(0) 推荐(0) 编辑