上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: 操作步骤 1. 在 CMD 中关闭监听 lsnrctl stop 2. 登录 SQL Plus 查看 local_listener 参数,因为使用的是默认端口1521,所以VALUE里面是空的 SQL>show parameter local_listener 3. 重建 Listener 指定新端 阅读全文
posted @ 2021-12-16 14:59 jinzesudawei 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: 查看 Oracle Client 字符集 select * from nls_session_parameters; 更新前 修改 Windows 系统环境变量 NLS_LANG = SWEDISH_SWEDEN.WE8MSWIN1252 更新后 参考资料 https://www.cnblogs.c 阅读全文
posted @ 2021-12-14 15:47 jinzesudawei 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 背景 Windows 10 ProDBeaver Enterprise Edition v21.0MongoDB v4.2 步骤 #1. 下载并安装 DBeaverhttps://dbeaver.com/download/enterprise/ #2. 下载并安装 JDK11https://www. 阅读全文
posted @ 2021-05-05 17:42 jinzesudawei 阅读(4633) 评论(0) 推荐(1) 编辑
摘要: #1. UOS系统下载 统信UOS桌面专业版x86_64https://www.chinauos.com/resource/ #2. 在 Hyper-V 虚拟机中进行安装 #3. UOS进入开发者模式 #4. 安装 Docker https://docs.docker.com/engine/inst 阅读全文
posted @ 2021-03-28 00:13 jinzesudawei 阅读(1361) 评论(0) 推荐(0) 编辑
摘要: 系统环境:Windows 10 Enterprise LTSC v1809 视频资源:姜子牙4k.Legend.of.Deification.2020.WEB-DL.2160p.H265.DoblyVision.DDP5.1-HAO4K Potplayer 播放效果 Win10 自带的 "电影和电视 阅读全文
posted @ 2020-12-18 22:35 jinzesudawei 阅读(46543) 评论(0) 推荐(0) 编辑
摘要: 问题 Server Error401 - Unauthorized: Access is denied due to invalid credentials.You do not have permission to view this directory or page using the cre 阅读全文
posted @ 2020-10-12 01:02 jinzesudawei 阅读(2952) 评论(0) 推荐(0) 编辑
摘要: 背景:MongoDB v4.2.7 错误:OperationFailed: Sort operation used more than the maximum 33,554,432 bytes of RAM. Add an index, or specify a smaller limit.’ on 阅读全文
posted @ 2020-09-23 12:46 jinzesudawei 阅读(872) 评论(0) 推荐(0) 编辑
摘要: 业务需求 使用 .Net 服务发送的邮件,如何统计打开率? 解决方案 在邮件中附加一张图片,图片 src 路径为 .Net WebAPI 提供的图片资源。当图片加载时,可以传递参数进行数据分析。 注意事项 图片资源为 HTTPS 路径可以直接加载使用;如果为 HTTP 路径则会被邮件进行默认替换。 阅读全文
posted @ 2020-09-14 01:08 jinzesudawei 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 框架 后端服务:.Net Core 3.1 WebAPI前端页面:.Net Core 3.1 MVC 服务端 1. 跨域配置(CORS) 使用 Nuget 安装 Microsoft.AspNet.WebApi.Cors 2. 项目配置(Startup) public class Startup { 阅读全文
posted @ 2020-08-29 01:06 jinzesudawei 阅读(2120) 评论(0) 推荐(0) 编辑
摘要: 背景 树莓派 4B + Ubuntu 20.04.1 LTS + MongoDB v3.6.8 配置步骤 1. 在 admin 表中添加超级管理员账号 2. 添加业务表,创建普通用户并分配权限 3. 修改 mongodb 配置文件,开启鉴权,开放外网访问权限(IP + 端口)。 sudo nano 阅读全文
posted @ 2020-08-02 01:19 jinzesudawei 阅读(1743) 评论(0) 推荐(0) 编辑
摘要: 背景 在 Blazor Wasm 应用中,尝试使用 HttpPatch 对记录进行更新操作。 [Route("api/[controller]")] [ApiController] public class PersonController : ControllerBase { private Li 阅读全文
posted @ 2020-05-10 02:28 jinzesudawei 阅读(1212) 评论(0) 推荐(0) 编辑
摘要: 背景 发布并部署一个 Blazor Wasm 应用到 IIS 问题 发布时如果选择了 Product single file,会得到 HTTP Error 500.38 - ANCM Application DLL Not Found 的错误 原因分析 HTTP Error 500.38 ANCM 阅读全文
posted @ 2020-05-08 21:50 jinzesudawei 阅读(3795) 评论(1) 推荐(2) 编辑
摘要: 什么是 Worker Service(辅助角色服务)? .NET Core 3.0 新增了 Worker Service 的新项目模板,可以编写长时间运行的后台服务,并且能轻松的部署成 windows 服务或 linux 守护程序。 如果安装的 vs2019 是中文版本,Worker Service 阅读全文
posted @ 2020-03-21 00:11 jinzesudawei 阅读(4352) 评论(0) 推荐(0) 编辑
摘要: 背景:运行 Docker Desktop,启动其 Hyper-V 实例失败 错误:Hardware assisted virtualization and data execution protection must be enabled in the BIOS 解决: 问题可能在于 禁用了Hype 阅读全文
posted @ 2020-03-16 00:38 jinzesudawei 阅读(2680) 评论(0) 推荐(0) 编辑
摘要: 硬件:Raspberry Pi 4B系统:Ubuntu 19.10 (Eoan Ermine) for IOT.Net Core 官网:https://dotnet.microsoft.com/download/dotnet-core/3.1 操作步骤 1. 系统环境准备 sudo apt-get 阅读全文
posted @ 2020-03-15 17:15 jinzesudawei 阅读(1616) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页
点击右上角即可分享
微信分享提示