参考 Create your own user-defined services Windows NT/2000/XP/2003, 和 Run a Windows Application as a Service with srvany
自定义Linux Bash终端提示符
Prompt is control via a special shell variable. You need to set PS1
, PS2
, PS3
and PS4
variable. If set, the value is executed as a command prior to issuing each primary prompt.
使用 Docker 部署 Sentry
参考 Sentry Doc.
How to Setup Reverse Proxy on IIS with URL-Rewrite
Most of the system administrator is aware of the reverse proxy. It is a type of proxy server which fetches the resources from one or more computers on clients requests and send back to the client. In simple terms, it works as an intermediate server, which listens to clients query. Then requests to server bases of clients query and returns results to client sent by the server. This tutorial will help you to setup reverse proxy using IIS with URL rewrite and application request routing extension.
查看当前机器的所有SSH连接
使用 Node.js 执行命令行程序
原文 - Execute a command line binary with Node.js
For even newer version of Node.js (v8.1.4), the events and calls are similar or identical to older versions, but it's encouraged to use the standard newer language features. Examples:
Spring Boot Maven 插件使用
Spring Boot Maven 插件提供了 Maven 对 Spring Boot 的支持, 让你能打包成jar或者war包,以及原地运行应用。使用该插件需要Maven版本大于等于3.2。
Windows 上的TCP代理设置
目前我们出现一个需求是将外网来的TCP请求代理到内网的某个服务器上, 比如我们的 Windows 上需要部署一个 RabbitMQ 推送服务, 但因为某些原因我们无法使用 Windows 版本的 RabbitMQ, 想将 RabbitMQ 部署在Linux服务器上, 确实有很多其他方式来满足这个需求, 比如再加一个服务器, 然后分配一个公网IP, 最后我们选择在 Windows 服务器上安装 VMware 然后虚拟一个Ubuntu系统. 现在需要将外网的 RabbitMQ 请求映射到 Ubuntu 上, 大概请求途径如下:
Ubuntu 系统安装根证书
Ubuntu新系统安装脚本
每次安装Ubuntu系统都要做一些初始化工作, 现记录如下, 方便下次使用.
为什么 Math.Round(2.5) 返回 2
制作Windows启动盘
制作Windows启动盘, 来源Dell
配置IIS反向代理教程
假设将域名www.helloworld.com
代理到本地的8080
端口
Node.js require 缓存
在Node环境, 使用require
多次加载模块时, 返回的都是同一个对象, 通过require.cache
可以迭代查看所有require缓存的对象.
ASP.Net 应用配置HTTP代理
在 web.config
文件新增以下配置, 即可设置代理(假设代理服务地址为 http://localhost:3210
):