1 2 3 4 5 ··· 31 下一页
摘要: IF NOT EXISTS可以用于创建表或者数据库的语句中,用于避免重复创建。 创建表时使用IF NOT EXISTS: 如果你不确定表是否存在,你可以在创建新表时使用IF NOT EXISTS,这样如果表已经存在,SQL语句将不会执行创建表的操作,也不会报错。 CREATE TABLE IF NO 阅读全文
posted @ 2024-07-22 18:20 低调码农哥! 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 查询更新 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 低调码农哥! 阅读(8) 评论(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 低调码农哥! 阅读(9) 评论(0) 推荐(0) 编辑
摘要: centos环境: ubuntu环境: sudo vi /var/www/html/index.nginx-debian.html 注意 :vi编辑时,dd命令删除当前行,dG组合命令,删除整页 阅读全文
posted @ 2024-05-29 22:11 低调码农哥! 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 一、Docker服务 设置开机启动 docker设置开机启动 systemctl enable docker.service docker关闭开机启动 systemctl disable docker.service 重新设置docker在系统中的自启动 systemctl reenable doc 阅读全文
posted @ 2024-05-14 22:58 低调码农哥! 阅读(174) 评论(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 低调码农哥! 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 进入开发好的程序目录,执行打包命令,生成auth目录,并将打包好的目录上传到CentOS的home目录 dotnet publish -o auth 执行运行命令 dotnet Howdy.Net6API.AuthenticationCenter.dll 使用postman进行测试 注:此种方式,适 阅读全文
posted @ 2024-01-10 22:51 低调码农哥! 阅读(16) 评论(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 低调码农哥! 阅读(160) 评论(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 低调码农哥! 阅读(244) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 31 下一页