摘要:
查询更新 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' 截取指定字符 在 阅读全文
摘要:
问题1: apache2: Could not reliably determine the server's fully qualified domain name, using XXX.XXX.XXX.XXX. Set the 'ServerName' directive globally to 阅读全文
摘要:
清除规则 iptables -F 移除nginx apt remove nginx 关闭防火墙 sudo ufw disable 安装apache apt update sudo apt install apache2 启动apache sudo systemctl start apache2 查看 阅读全文
摘要:
centos环境: ubuntu环境: sudo vi /var/www/html/index.nginx-debian.html 注意 :vi编辑时,dd命令删除当前行,dG组合命令,删除整页 阅读全文
摘要:
一、Docker服务 设置开机启动 docker设置开机启动 systemctl enable docker.service docker关闭开机启动 systemctl disable docker.service 重新设置docker在系统中的自启动 systemctl reenable doc 阅读全文
摘要:
进入 守护进程目录: cd etc/systemd/system 创建守护进行服务: vi my-auth.service 将如下代码更改为对应的服务,保存后退回 [Unit] Description=Auth .NET Web API App running on CentOS [Service] 阅读全文
摘要:
进入开发好的程序目录,执行打包命令,生成auth目录,并将打包好的目录上传到CentOS的home目录 dotnet publish -o auth 执行运行命令 dotnet Howdy.Net6API.AuthenticationCenter.dll 使用postman进行测试 注:此种方式,适 阅读全文
摘要:
部署环境 操作系统:CentOS 7 内核版本: [root@k8s-worker01 master01]# cat /proc/version Linux version 5.4.258-1.el7.elrepo.x86_64 (mockbuild@Build64R7) (gcc version 阅读全文
摘要:
去官网下载Windows平台下的SDK并安装,与开发环境对应的版本【我的程序为.NET6.0】:https://dotnet.microsoft.com/zh-cn/download/dotnet/thank-you/sdk-6.0.417-windows-x64-installer 在开发好的程序 阅读全文
摘要:
C# WinForm中使用NPOI导出Excel表格时,报如下错误,原因是NPOI与ICSharpCode版本不匹配 {"安全透明方法“NPOI.OpenXml4Net.OPC.ZipPackage..ctor(System.IO.Stream, NPOI.OpenXml4Net.OPC.Packa 阅读全文