2025年1月2日
摘要: 管理员身份运行如下应用 Windows PowerShell,执行命令后重启再安装Sqlserver2016 New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\stornvme\Parameters\Device" -Na 阅读全文
posted @ 2025-01-02 10:41 RookieBoy666 阅读(1) 评论(0) 推荐(0) 编辑
  2024年12月30日
摘要: 守护进程(可选) sudo nano /etc/systemd/system/opac.service 键入文本 [Unit] Description=opac OPAC [Service] WorkingDirectory=/usr/share/opac ExecStart=/usr/bin/do 阅读全文
posted @ 2024-12-30 17:28 RookieBoy666 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 安装Jexus 1.进入系统盘,右击【以管理员身份打开】输入管理员密码 。然后文件夹空白处右键【在终端中打开: ,终端输入以下命令: curl https://jexus.org/release/x64/install.sh|sh 看jexus是否安装成功: http://localhost//in 阅读全文
posted @ 2024-12-30 15:56 RookieBoy666 阅读(7) 评论(0) 推荐(0) 编辑
  2024年12月27日
摘要: windows上面运行core程序没问题,但是访问数据库会提示如下: 看官方文档,低版本的SqlServer TLS版本低于1.2: https://learn.microsoft.com/zh-cn/sql/connect/ado-net/sqlclient-troubleshooting-gui 阅读全文
posted @ 2024-12-27 17:22 RookieBoy666 阅读(12) 评论(0) 推荐(0) 编辑
  2024年12月23日
摘要: 下载旧版SSL https://openssl-library.org/source/old/1.1.1/index.html 解压缩 运行Config 可执行文件 apt install make gcc sudo make install 阅读全文
posted @ 2024-12-23 15:59 RookieBoy666 阅读(1) 评论(0) 推荐(0) 编辑
  2024年12月18日
摘要: 1.首先设置GridView的RowAutoHeight=true 2.在需要换行的列上添加MemoEdit 阅读全文
posted @ 2024-12-18 17:03 RookieBoy666 阅读(16) 评论(0) 推荐(0) 编辑
  2024年12月16日
摘要: 特性: using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; using Newtonsoft.Json.Linq; using System.Net; using WaterCloud.Entity.Syst 阅读全文
posted @ 2024-12-16 11:00 RookieBoy666 阅读(7) 评论(0) 推荐(0) 编辑
  2024年12月13日
摘要: 微软官网 https://learn.microsoft.com/zh-cn/dotnet/core/install/linux-debian?tabs=dotnet8 1.安装SDK框架命令: wget https://packages.microsoft.com/config/debian/12 阅读全文
posted @ 2024-12-13 15:24 RookieBoy666 阅读(39) 评论(0) 推荐(0) 编辑
  2024年11月13日
摘要: using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Reflection; using System.Text; using System.Threadi 阅读全文
posted @ 2024-11-13 15:11 RookieBoy666 阅读(3) 评论(0) 推荐(0) 编辑
  2024年11月1日
摘要: 1.安装包: Install-Package FluentScheduler 2. Global.asax添加 JobManager.Initialize(new MyRegister()); 3.添加类 public class MyRegister : Registry { public MyR 阅读全文
posted @ 2024-11-01 13:35 RookieBoy666 阅读(8) 评论(0) 推荐(0) 编辑