会员
T恤
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
低级码农
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
8
下一页
2023年12月2日
如何优雅的关闭一个IIS站点
摘要: 众所周知,当我们使用IIS的时候,在使用负载均衡的情况下,想停掉一个站点,通常会点击Sites(网站)中的Stop(停止)来停止一个站点。但是这样做,会带来一个问题,当点击Stop(停止)时,正在响应中的请求会立刻被切断,使客户端无法收到响应,后续也无法连接该站点,在某些业务场景中,比如涉及金额交易
阅读全文
posted @ 2023-12-02 17:40 ChasingDreams
阅读(565)
评论(0)
推荐(0)
2023年11月12日
Powershell设置"智能感知"
摘要: Set-PSReadlineKeyHandler -Key Tab -Function Complete
阅读全文
posted @ 2023-11-12 22:28 ChasingDreams
阅读(12)
评论(0)
推荐(0)
2023年11月7日
Windows10输入法卡顿解决办法
摘要: 打开命令行 cd %USERPROFILE%\AppData\Roaming\Microsoft\InputMethod\Chs del /s /q *.tmp 轻松秒杀!
阅读全文
posted @ 2023-11-07 11:06 ChasingDreams
阅读(114)
评论(0)
推荐(0)
2023年8月26日
docker iptables 报错
摘要: ``` systemctl stop docker iptables-save > /etc/sysconfig/iptables systemctl start docker systemctl enable docker ```
阅读全文
posted @ 2023-08-26 12:05 ChasingDreams
阅读(30)
评论(0)
推荐(0)
2023年8月16日
ubuntu 修改网络 静态IP
摘要: ``` network: version: 2 renderer: networkd ethernets: ## 可以ip a查看以太网连接名称 eth0: dhcp4: no dhcp6: no ## addresses添加网络掩码,如192.168.56.3/24 addresses: - 19
阅读全文
posted @ 2023-08-16 21:03 ChasingDreams
阅读(31)
评论(0)
推荐(0)
Linux新建用户
摘要: ``` groupadd -g 1000 siyuan # 禁止登录 不创建家目录 useradd -M -u 1000 -g 1000 -s /sbin/nologin siyuan chown -R siyuan:siyuan /xxxx/siyuan/ usermod -a -G siyuan
阅读全文
posted @ 2023-08-16 15:09 ChasingDreams
阅读(12)
评论(0)
推荐(0)
2023年8月10日
.net core aot 设置
摘要: ``` Exe net7.0 enable enable true Size true Link true true true false true true false false ```
阅读全文
posted @ 2023-08-10 15:50 ChasingDreams
阅读(66)
评论(0)
推荐(0)
2022年12月20日
修改IIS响应报文头-URL重写
摘要: RESPONSE_X-POWERED-BY RESPONSE_SERVER
阅读全文
posted @ 2022-12-20 16:41 ChasingDreams
阅读(127)
评论(0)
推荐(0)
2022年12月11日
离线安装VisualStudio2022
摘要: 下载bootstrapper https://learn.microsoft.com/en-us/visualstudio/install/create-an-offline-installation-of-visual-studio?view=vs-2022#step-1 download-the
阅读全文
posted @ 2022-12-11 10:37 ChasingDreams
阅读(3592)
评论(0)
推荐(0)
2022年11月27日
SSH隧道
摘要: 本地端口转发(访问其他网段机器) -L 本地端口转发 命令:ssh -N -L [本地ip]:[本地端口]:[远程ip]:[远程端口] 远程服务器 本地ip可以省略不写 在本机执行 例如:ssh -N -L 3012:远程ip:2220 root@网关ip 含义:把本机的3012映射到远程服务器的2
阅读全文
posted @ 2022-11-27 22:12 ChasingDreams
阅读(188)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
8
下一页
公告
点击右上角即可分享