nginx

nginx

centos 7.3

nginx服务器安装及配置文件详解
像负载均衡配置(包括健康检查)、缓存(包括清空缓存)配置实例
ssl加密

macos centos 7.3 还原系统后远程登录不上

删除本地机器上的.ssh文件。
 /User/username../.ssh文件

安装nginx及其依赖

yum -y update
升级所有包同时也升级软件和系统内核
查看内核版本命令
cat /proc/version

查看linux版本:
lsb_release -a
yum -y install xxx    -y == yes   自动安装不询问
 yum -y install nginx
yum -y install gcc gcc-c++ make libtool zlib zlib-devel openssl openssl-devel pcre pcre-devel 
https://rpmfind.net/
https://rpmfind.net/linux/mageia/distrib/cauldron/aarch64/media/core/release/nginx-1.14.0-2.mga7.aarch64.rpm

nodejs

curl --silent --location https://rpm.nodesource.com/setup_10.x | bash -

sudo yum install -y nodejs

mongodb

//下载
curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel62-4.0.2.tgz
//解压 -xf
tar -zxf mongodb-linux-x86_64-rhel62-4.0.2.tgz

你可能感兴趣的:(nginx)