centos7 格式化及挂载磁盘 查找新磁盘 fdisk -l 创建挂载点mkdir -p /data/datae 用fdisk命令创建分区 fdisk /dev/xvde 因为fdisk是交互式的,输入g,n,回车,回车,回车,w 格式化磁盘mkfs.xfs /dev/xvde1 挂载 mount ...
分类:
其他好文 时间:
2021-04-30 11:57:08
阅读次数:
0
个人备注:vSphere ESXi 6.7 注册码 HV4WC-01087-1ZJ48-031XP-9A843NF0F3-402E3-MZR80-083QP-3CKM24F6FX-2W197-8ZKZ9-Y31ZM-1C3LZJZ2E9-6D2DK-XZQD0-632E4-33E7ZMZ48M-DN ...
分类:
其他好文 时间:
2021-04-29 12:21:24
阅读次数:
0
安装cargo curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh vscode插件 ext install rust-lang.rust ext install vadimcn.vscode-lldb 调试配置 launsh ...
分类:
其他好文 时间:
2021-04-29 12:07:59
阅读次数:
0
C#-图片上传: controller: 1 public JsonResult ExpressDeliverySign(ExpressDeliverySign_LO_IP model) 2 { 3 HttpFileCollectionBase files = Request.Files; 4 if ...
from django.http import JsonResponse from django.contrib.auth import authenticate,login,logout # 登录处理 def signin(request): # 从 HTTP POST 请求中获取用户名、密码参数 ...
分类:
其他好文 时间:
2021-04-29 11:45:13
阅读次数:
0
Nginx 处理请求的过程一共划分为 11 个阶段,按照执行顺序依次是 post-read、server-rewrite、find-config、rewrite、post-rewrite、preaccess、access、post-access、try-files、content 以及 log。 1 ...
分类:
其他好文 时间:
2021-04-29 11:38:38
阅读次数:
0
2021年4月24日17:29:22 环境: php8.0.3 centos 8.3 ./configure \ --prefix=/usr/local/php8 \ --with-config-file-path=/usr/local/php8/etc \ --with-curl \ --with ...
分类:
Web程序 时间:
2021-04-27 15:21:59
阅读次数:
0
起因 CentOS7自带Git1.8版本,版本太低。 更新步骤 1 卸载旧版本Git yum remove git 2 下载依赖(环境配置) yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel as ...
分类:
其他好文 时间:
2021-04-27 15:16:15
阅读次数:
0
原文:https://www.cnblogs.com/powerwu/articles/12978664.html 偶然看到一条命令可以获取访问者的真实 IP,就想自己实现一下。 命令如下: curl icanhazip.com 我是用的 Java 程序 + Nginx 实现的,没什么难度,但是 N ...
分类:
编程语言 时间:
2021-04-27 14:56:07
阅读次数:
0
# CentOS7 rm -f /etc/yum.repos.d/*.repo curl -L "http://mirrors.163.com/.help/CentOS7-Base-163.repo" -o /etc/yum.repos.d/CentOS7-Base-163.repo curl -L ...
分类:
其他好文 时间:
2021-04-27 14:17:29
阅读次数:
0