oracle vm ubuntu 不能为虚拟电脑 打开一个新任务

摘要: 今天用oracle vm virtualbox 安装 ubuntu 启动时出现 “不能为虚拟电脑 ubuntu 打开一个新任务” 详细错误说明 Raw-mode is unavailable courtesy of Hyper-V. (VERR_SUPDRV_NO_RAW_MODE_HYPER_V_ 阅读全文
posted @ 2020-12-16 14:55 #知了 阅读(1182) 评论(0) 推荐(0) 编辑

.net core webapi 发布到IIS下时,会出现不支持put ,delete 类型的请求时

摘要: .net core webapi 发布到IIS下时,会出现不支持put ,delete 类型的请求时,在WEB.CONFIG 增加下列配置即可。 <system.webServer> <modules runAllManagedModulesForAllRequests="true"> <remov 阅读全文
posted @ 2020-11-09 14:17 #知了 阅读(238) 评论(0) 推荐(0) 编辑

Windows 10当中如何添加开机启动应用

摘要: 在测试项目部署时,需要运行 node.js 服务 ,并开机时运行此服务。为了方便在启动时传入相应参写,需要写shell 脚本 。 在此项目需用到websocket 服务,来实现视频流的推送 shell 脚本 如下 cmd /k "cd /d F:\web\jsmpeg&&node websocket 阅读全文
posted @ 2020-09-08 18:07 #知了 阅读(261) 评论(0) 推荐(0) 编辑

MYSQL安装丢失MSVCR120.dll问题

摘要: 今天安装MYSQL 5.7.30 数据库 在初始化数据库(mysqld --initialize=insecure --user=mysql)时,出现丢失MSVCR120.dll问题 经百度 获取 解决方法:下载 VC redist packages for x64,下载完成,点击运行即可。 本已经 阅读全文
posted @ 2020-05-13 17:26 #知了 阅读(1645) 评论(0) 推荐(0) 编辑

oracle 常用语句

摘要: 创建表空间create tablespace data_TABLESPACElogging datafile 'D:\APP\ADMINISTRATOR\ORADATA\WEAIRS\DATA.DBF' size 50m autoextend on next 50m maxsize 20480m e 阅读全文
posted @ 2020-04-13 09:45 #知了 阅读(131) 评论(0) 推荐(0) 编辑

XML Serialize/Deserialize

摘要: using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Text; using System.Web; using System.Xml; using System.Xml.Serializati... 阅读全文
posted @ 2019-05-15 11:18 #知了 阅读(141) 评论(0) 推荐(0) 编辑

StackExchange.Redis 封装类

摘要: using StackExchange.Redis; using System; using System.Collections.Generic; using System.Linq; using System.Configuration; using Newtonsoft.Json; namespace Services { public class CacheServic... 阅读全文
posted @ 2019-05-15 11:15 #知了 阅读(267) 评论(0) 推荐(0) 编辑

.NET CORE EnvironmentVariable

摘要: .NET CORE System variables SETIn System variablese.g1:Variable name: ASPNETCORE_ENVIRONMENTVariable value:Developmente.g2:Variable name: xxxDBConnecti 阅读全文
posted @ 2019-05-15 11:06 #知了 阅读(1005) 评论(0) 推荐(0) 编辑

wcf 代理实例

摘要: 通过过代理调用 wcf服务 using Microsoft.Extensions.Options; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Security; using System.Security.Cryptography.X5... 阅读全文
posted @ 2019-05-15 10:50 #知了 阅读(313) 评论(0) 推荐(0) 编辑

RestSharp 封状实例

摘要: 1 public class Rest 2 { 3 private static Logger logger = LogManager.GetCurrentClassLogger(); 4 private IRestClient client; 5 string proxyIp = AppConfig.proxyIp; 6 int proxyPort = AppConfig.prox... 阅读全文
posted @ 2019-05-15 10:33 #知了 阅读(838) 评论(0) 推荐(0) 编辑