创建 Nginx 容器 docker run --name nginx-demo -p 8080:80 -d nginx 参数说明: --name nginx-demo:容器名称 -p 8080:80: 端口进行映射,将本地 8080 端口映射到容器内部的 80 端口 -d nginx: 设置容器在 ...
分类:
其他好文 时间:
2021-06-20 17:51:22
阅读次数:
0
nginx 命令和信号 nginx命令 nginx 命令支持向其发送信号,实现不同功能 nginx 格式 nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives] 选项说明 帮助: -? -h 使用指定的配置文件: ...
分类:
Web程序 时间:
2021-06-20 17:47:57
阅读次数:
0
一,apt方式安装php 说明:用apt方式安装适用于本地开发环境,如果是线上生产环境,建议下载软件后编译安装 root@lhdpc:~# apt-get install php 查看结果: root@lhdpc:~# php -v PHP 7.4.16 (cli) (built: Mar 23 2 ...
分类:
数据库 时间:
2021-06-20 17:46:30
阅读次数:
0
官方指导: https://github.com/Trusted-AI/adversarial-robustness-toolbox/wiki/Get-Started#setup 安装记录: 方法 1:使用 conda 安装 conda install -c conda-forge adversar ...
分类:
其他好文 时间:
2021-06-20 17:44:00
阅读次数:
0
1. 准确的PCA和概率解释(Exact PCA and probabilistic interpretation) PCA 用于对具有一组连续正交分量(Orthogonal component 译注: 或译为正交成分,下出现 成分 和 分量 是同意词)的多变量数据集进行方差最大化的分解。 在 sc ...
分类:
其他好文 时间:
2021-06-20 17:35:34
阅读次数:
0
前言 一般来说,在进行实际应用的开发过程中,应用会拥有不同的运行环境,通常会有以下环境: 本地开发环境 测试环境 生产环境 在不同环境中,我们可能会使用不同的数据库或邮件发送等配置,这时候则需要通过 .env 文件来针对不同的运行环境作不同的设置。 环境变量 在自动化测试中,有时需要借助环境变量实现 ...
分类:
Web程序 时间:
2021-06-20 17:34:37
阅读次数:
0
pytorch runtime error: CUDNN_STATUS_MAPPING_ERROR Python 基础教程--pytorch 报错 以创建Pytorch为例 (For more information, please go to Alan D. Chen , upgrading~~) ...
分类:
移动开发 时间:
2021-06-19 19:30:11
阅读次数:
0
####什么是npm Node的模块管理工具,根据npm我们可以快速安装,卸载所需要的资源文件 ####基于npm进行模块管理 $npm install xxx 把模块安装到当前项目中(node_modules) $npm install xxx -g 把模块安装在全局环境中 $npm i xxx@ ...
分类:
其他好文 时间:
2021-06-19 19:27:27
阅读次数:
0
原理模型 准备工作 查看是否安装成功 查看 keepalived配置文件 查看keepalived.conf配置文件 //查看服务器网卡 检测脚本配置 ...
分类:
其他好文 时间:
2021-06-19 19:23:54
阅读次数:
0
配置vscode auto save afterDelay 安装 npm install -g nodemon --registry=https://registry.npm.taobao.org 运行 // node test.js nodemon test.js ...
分类:
Web程序 时间:
2021-06-19 19:17:14
阅读次数:
0