Linux下进程管理工具推荐:supervisor
Supervisor (http://supervisord.org) 是一个用 Python 写的进程管理工具,可以很方便的用来启动、重启、关闭进程(不仅仅是 Python 进程)。除了对单个进程的控制,还可以同时启动、关闭多个进程,比如很不幸的服务器出问题导致所有应用程序都被杀死,此时可以用 supervisor 同时启动所有应用程序而不是一个一个地敲命令启动。 安装 Supervisor 可以运行在 Linux、Mac OS X 上。如前所述,supervisor 是 Python 编写的,所以安装起来也很方便,可以直接用 pip : 1 sudo pip install supervisor ...
Linux下配置 nginx + .net core 2.0
用到的软件如下 winSCP, vs2017 ,centos 6.8 64位, 安装环境 aliyun centos 6.8 64位 安装.net core 2.0 依赖的组件 yum install deltarpm epel-release unzip libunwind gettext libcurl-devel openssl-devel zlib libicu-devel 安装.net core 2.0 sudo dnf install libunwind libicu curl -sSL -o dotnet.tar.gz https://aka.ms/dotnet-sdk-2.0.0-linux-x64 sudo mkdir -p /opt/dotnet >> sudo tar zxf dotnet.tar.gz -C /opt/dotnet sudo ln -s /opt/dotnet/dotnet /usr/local/bin dotnet --...