函数原型: gen_cross_contour_xld( : Cross : Row, Col, Size, Angle :) 函数作用: 为输入的每一个点生成十字形 参数列表:Cross(out):生成XLD轮廓 Row(in):输入点集行坐标 Col(in):输入点集列坐标,Col元组的个数与R ...
分类:
其他好文 时间:
2021-02-26 12:58:40
阅读次数:
0
参考文章 安装nignx1.14,并且打补丁,反向代理健康监控,ssl,解决自启动报pid错误 nginx 反向代理,和ssl重定向。 安装nignx nignx的安装目录 /usr/nginx nignx的源码目录 /usr/local/src/nginx nignx的健康监控目录 /usr/ng ...
分类:
编程语言 时间:
2021-02-25 12:22:59
阅读次数:
0
一:随便创建目录dock,准备好如下文件: 二、编写Dockerfile,通过它能快速地构建docker镜像vi Dockerfile 新增如下配置 FROM centosMAINTAINER this is dock image <jsh>ADD jdk1.8.0_191 /usr/local/j ...
分类:
Web程序 时间:
2021-02-24 13:25:21
阅读次数:
0
我们一般会在项目根目录加上.gitignore文件,但是有些初始的项目并没有这个文件,于是需要我们主动增加这个文件。 文件的参考内容如下: .DS_Store node_modules/ /dist/ npm-debug.log* yarn-debug.log* yarn-error.log* /t ...
分类:
其他好文 时间:
2021-02-23 14:18:35
阅读次数:
0
怎么设置Linux系统中文语言,这是很多小伙伴在开始使用Linux的时候,都会遇到一个问题,就是终端输入命令回显的时候中文显示乱码。出现这个情况一般是由于没有安装中文语言包,或者设置的默认语言有问题导致的。以centos为例,操作Linux怎么查看语言,设置修改语言 在这里插入图片描述 1.查看当前 ...
分类:
系统相关 时间:
2021-02-23 14:11:56
阅读次数:
0
一、安装docker-compose curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose chm ...
分类:
其他好文 时间:
2021-02-22 11:52:31
阅读次数:
0
mysql8: alter user 'root'@'localhost' identified by '123456'; mysql5.7: update user set authentication_string = password('123456') where user = 'root' ...
分类:
数据库 时间:
2021-02-22 11:45:52
阅读次数:
0
tomcat加固安全配置 1.禁止目录浏览 在web.xml中进行如下配置: <param-name>listings</param-name> <param-value>false</param-value> 2.开启tomcat日志记录,默认是开启的。 server.xml中配置: <Valve ...
分类:
其他好文 时间:
2021-02-22 11:44:32
阅读次数:
0
[root@op-benchmark-216 ~]# cat /etc/dhcp/dhcpd.conf # dhcpd.conf # # Sample configuration file for ISC dhcpd # # option definitions common to all supp ...
分类:
其他好文 时间:
2021-02-20 12:34:38
阅读次数:
0
只记录一种最简便的方法,在项目根目录下创建vue.config.js,修改module配置: 1 module.exports = { 2 outputDir: 'dist', //build输出目录 3 assetsDir: 'assets', //静态资源目录(js, css, img) 4 l ...
分类:
移动开发 时间:
2021-02-19 13:44:35
阅读次数:
0