If a file is larger than 5MB size limit for pushing t, the files must be tracked and updated using git lfs. Note: Please follow the instructions here( ...
分类:
其他好文 时间:
2021-01-11 10:39:35
阅读次数:
0
server { listen 80; listen 443 ssl http2; server_name www.baidu.com; charset utf-8; fastcgi_intercept_errors on; include filter.forbid; error_page 404 ...
分类:
其他好文 时间:
2021-01-08 11:29:22
阅读次数:
0
一、报错内容: Traceback (most recent call last): File "D:\Ddworkspace\workspace\DdScript\dmall-small-program\autoPyWxInterface\run_start_auto.py", line 39, ...
分类:
编程语言 时间:
2021-01-07 11:44:09
阅读次数:
0
应用背景: 本人是医疗软件的开发者, 有许多要跟其他厂商交互的数据, 这次是要接收来自平台的xml格式的数据。 使用dom4j一样可以解析,但是这样的话后期不容易维护,而且程序可读性也差。(其实主要还是不能用Alt+/快捷键打出代码哈哈) 我的实现思路是先用xml样例生成xsd说明文件,然后再用xj ...
分类:
编程语言 时间:
2021-01-06 12:23:17
阅读次数:
0
实用技能:60个常用的Linux命令 ●查看硬件信息相关命令(8个) ifconfig free fdisk ethtool mii-tool dmidecode dmesg lspci ●其它(19个) echo printf rpm yum watch alias unalias date cl ...
分类:
系统相关 时间:
2021-01-06 12:19:17
阅读次数:
0
#!/bin/bash #判断磁盘是否已经进行了分区 if (( $(fdisk -l /dev/sdb|grep "^/dev/sdb"|wc -l) > 0 )) then echo "这块磁盘已经分区,退出,请管理员检查" exit #退出脚本,后面的命令不再执行 else echo "开始进 ...
分类:
其他好文 时间:
2021-01-05 11:14:07
阅读次数:
0
在nginx配置中添加 location / { try_files $uri $uri/ @router; index index.html; } location @router { rewrite ^.*$ /index.html last; } ...
分类:
其他好文 时间:
2021-01-04 11:32:56
阅读次数:
0
今天执行:net start MongoDB 开启服务时,出现服务名无效问题。 百度搜了一些文章,终于找到了解决办法: 1、新建db文件夹和log文件夹 2、新建mongo.config文件 dbpath=D:\Program Files\MongoDB\Server\4.2\data\db log ...
分类:
数据库 时间:
2021-01-04 11:27:12
阅读次数:
0
Linux df(英文全拼:disk free) 命令用于显示目前在 Linux 系统上的文件系统磁盘使用情况统计。 文件-h, --human-readable 使用人类可读的格式(预设值是不加这个选项的...) [root@rdrssitapp03 ~]# df -h Filesystem Si ...
分类:
系统相关 时间:
2021-01-04 11:13:56
阅读次数:
0
继上一篇《Linux Userspace Kernelspace内存分布》之后,在分析一下内存优化的方法。 https://www.cnblogs.com/tangtangworld/p/11738090.html 后面还有一篇进程空内存使用分布进一步分析的方法,看后面有没有时间,这几天被几个Ker ...
分类:
系统相关 时间:
2021-01-04 11:05:48
阅读次数:
0