摘要: 查询更新 UPDATE tab1 as t1 INNER JOIN tab2 as t2 ON t1.sampleId= t2.sampleId set t1.TaskCon='4' where t2.GroupCode='5814344' AND t1.taskCon = '6' 阅读全文
posted @ 2024-06-06 16:07 低调码农哥! 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 问题1: apache2: Could not reliably determine the server's fully qualified domain name, using XXX.XXX.XXX.XXX. Set the 'ServerName' directive globally to 阅读全文
posted @ 2024-06-05 21:43 低调码农哥! 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 清除规则 iptables -F 移除nginx apt remove nginx 关闭防火墙 sudo ufw disable 安装apache apt update sudo apt install apache2 启动apache sudo systemctl start apache2 查看 阅读全文
posted @ 2024-05-29 22:51 低调码农哥! 阅读(5) 评论(0) 推荐(0) 编辑
摘要: centos环境: ubuntu环境: sudo vi /var/www/html/index.nginx-debian.html 注意 :vi编辑时,dd命令删除当前行,dG组合命令,删除整页 阅读全文
posted @ 2024-05-29 22:11 低调码农哥! 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 一、Docker服务 设置开机启动 docker设置开机启动 systemctl enable docker.service docker关闭开机启动 systemctl disable docker.service 重新设置docker在系统中的自启动 systemctl reenable doc 阅读全文
posted @ 2024-05-14 22:58 低调码农哥! 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 进入 守护进程目录: cd etc/systemd/system 创建守护进行服务: vi my-auth.service 将如下代码更改为对应的服务,保存后退回 [Unit] Description=Auth .NET Web API App running on CentOS [Service] 阅读全文
posted @ 2024-05-14 22:55 低调码农哥! 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 进入开发好的程序目录,执行打包命令,生成auth目录,并将打包好的目录上传到CentOS的home目录 dotnet publish -o auth 执行运行命令 dotnet Howdy.Net6API.AuthenticationCenter.dll 使用postman进行测试 注:此种方式,适 阅读全文
posted @ 2024-01-10 22:51 低调码农哥! 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 部署环境 操作系统:CentOS 7 内核版本: [root@k8s-worker01 master01]# cat /proc/version Linux version 5.4.258-1.el7.elrepo.x86_64 (mockbuild@Build64R7) (gcc version 阅读全文
posted @ 2023-12-26 23:59 低调码农哥! 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 去官网下载Windows平台下的SDK并安装,与开发环境对应的版本【我的程序为.NET6.0】:https://dotnet.microsoft.com/zh-cn/download/dotnet/thank-you/sdk-6.0.417-windows-x64-installer 在开发好的程序 阅读全文
posted @ 2023-12-21 23:39 低调码农哥! 阅读(225) 评论(0) 推荐(0) 编辑
摘要: C# WinForm中使用NPOI导出Excel表格时,报如下错误,原因是NPOI与ICSharpCode版本不匹配 {"安全透明方法“NPOI.OpenXml4Net.OPC.ZipPackage..ctor(System.IO.Stream, NPOI.OpenXml4Net.OPC.Packa 阅读全文
posted @ 2023-12-07 17:38 低调码农哥! 阅读(197) 评论(0) 推荐(0) 编辑