12 2019 档案
centos 7.6 安装配置nginx (显示中文目录,带密码验证)
摘要:yum install -y nginx service nginx start 配置文件重新生效 nginx -s reload 配置文件所在目录 vim /etc/nginx/nginx.conf 38 server { 39 listen 80 default_server; 40 liste 阅读全文
posted @ 2019-12-25 15:21 alantop 阅读(521) 评论(0) 推荐(0)
centos 7.6 docker nginx
摘要:Centos7 docker nginx容器搭建 一、安装docker https://www.cnblogs.com/alantop/p/12096153.html 二、创建Dockerfile 1 2 3 4 #创建文件夹 mkdir centos_nginx cd centos_nginx v 阅读全文
posted @ 2019-12-25 13:29 alantop 阅读(521) 评论(0) 推荐(0)
安装 docker
摘要:一、安装Docker 1.1、查看原有系统是否已经安装docker 1 yum list installed | grep docker 1.2、如果有则不需要继续安装,想重新安装,先卸载 1 2 3 yum -y remove docker.x86_64 yum -y remove docker- 阅读全文
posted @ 2019-12-25 13:28 alantop 阅读(173) 评论(0) 推荐(0)
mongdb插入 查询时间
摘要:Robo 3T mongdb客户端 https://www.robomongo.org/ 模糊查找关键字 db.getCollection('test').find({"name":/招/}) 查询 db.getCollection('test').find({'time':{$gt:ISODate 阅读全文
posted @ 2019-12-17 13:08 alantop 阅读(215) 评论(0) 推荐(0)
vs2017 官方下载地址 和 官方建立脱机安装包的方法
摘要:vs2017 官方下载地址: https://docs.microsoft.com/zh-cn/visualstudio/releasenotes/vs2017-relnotes VS2017 官方建立脱机安装方法 https://docs.microsoft.com/zh-cn/visualstu 阅读全文
posted @ 2019-12-10 09:57 alantop 阅读(542) 评论(0) 推荐(0)
centos7 安装 git服务器
摘要:服务器端配置 yum install -y git groupadd git useradd git -g git 2.创建authorized_keys cd /home/git mkdir .ssh chmod 700 .ssh touch .ssh/authorized_keys chmod 阅读全文
posted @ 2019-12-04 11:21 alantop 阅读(459) 评论(0) 推荐(0)