Windows下Nginx的启动、停止、重启等命令
摘要:Windows下Nginx的启动、停止等命令 在Windows下使用Nginx,我们需要掌握一些基本的操作命令,比如:启动、停止Nginx服务,重新载入Nginx等,下面我就进行一些简单的介绍。 假设你安装在 C:\server\nginx-1.0.2目录下, cmd命令进入安装文件; 1、启动:
阅读全文
posted @
2021-01-30 21:03
qqhfeng16
阅读(322)
推荐(0) 编辑
Windows下MySQL5.6以上版本不能用localhost和127.0.0.1连接问题
摘要:问题描述:使用的MySQL5.6安装包默认的安装方式安装的mysql,然后使用Navicat Premium 工具 和 localhost/127.0.0.1链接mysql数据库,结果都弹出提示:Can’t connect to MySQL server on ‘localhost’ (10061)
阅读全文
posted @
2021-01-26 22:49
qqhfeng16
阅读(345)
推荐(0) 编辑
Asp.net core web api 下载文件 return File 返回500错误 解决方案
摘要:分类专栏: 成长的程序员 版权 [HttpGet] public IActionResult GetTile(int x, int y, int z, int style) { var path = TileUtil.GetPath(Config.TilesFloder, (TileStyle)st
阅读全文
posted @
2021-01-20 17:16
qqhfeng16
阅读(576)
推荐(0) 编辑
LINQ的左连接、右连接、内连接
摘要:感情是谁在左边就是左连接 如果向内连接,取消中间的表 1、左连接: var LeftJoin = from emp in ListOfEmployeesjoin dept in ListOfDepartmenton emp.DeptID equals dept.ID into JoinedEmpDe
阅读全文
posted @
2021-01-19 09:32
qqhfeng16
阅读(167)
推荐(0) 编辑
iframe全屏测试(以下代码嵌入后,和原生态显示查不到)
摘要:<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>iframe全屏测试</title> </head> <body scroll="no" style="margin:a
阅读全文
posted @
2021-01-08 11:49
qqhfeng16
阅读(117)
推荐(0) 编辑
office文件所对应的的 Content-type类型Content-type类型总结
摘要:最近做文件下载因为涉及到不同类型的文件,所以重新查阅了一下文件所对应的的content-type类型,好记性不如烂笔头,记录一下。 文件后缀MIME TYPE .doc application/msword .dot application/msword .docx application/vnd.
阅读全文
posted @
2021-01-03 23:39
qqhfeng16
阅读(2345)
推荐(0) 编辑