后端 第39页
IDM Chrome扩展下载地址-Ddmit

IDM Chrome扩展下载地址

官网:http://www.internetdownloadmanager.com/register/new_faq/chrome_extension2.html
ddmit的头像-DdmitDdmit6年前
019070
nginx启用ngx_http_referer_module模块配置图片防盗链-Ddmit

nginx启用ngx_http_referer_module模块配置图片防盗链

辛辛苦苦制作的博文配置被盗用,不仅浪费自己的心血,还浪费服务器的流量和带宽,着实气人,找到一个nginx图片防盗链的配置方法。 环境: nginx 1.14.0 ; CentOS 7.5 x64; 配置: 我的nginx安...
ddmit的头像-DdmitDdmit6年前
021050
已解决:nginx报错Request Entity Too Large-Ddmit

已解决:nginx报错Request Entity Too Large

错误 nginx报错: Request Entity Too Large 原因 nginx客户端请求正文的最大允许大小默认为1m,参考这里:http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size; ...
ddmit的头像-DdmitDdmit6年前
019770
Elasticsearch 7安装elasticsearch-analysis-ik分词器-Ddmit

Elasticsearch 7安装elasticsearch-analysis-ik分词器

环境 Elasticsearch 7.1.1; elasticsearch-analysis-ik-7.1.1.zip; CENTOS 7; 安装 1.在线安装 [inspur@localhost elasticsearch-7.1.1]$ pwd /home/inspur/elasticsearch/elasticsearch-7.1...
ddmit的头像-DdmitDdmit6年前
032880
CentOS安装JDK并配置环境变量-Ddmit

CentOS安装JDK并配置环境变量

在安装好的CentOS上,会自带OpenJdk,我们需要先卸载掉,然后再安装oracle公司的jdk,这里我们使用rpm方式安装,版本为jdk-8u211-linux-x64.rpm。 环境信息 系统:CentOS Linux release 7.5.180...
ddmit的头像-DdmitDdmit6年前
021960
使用VirtualBox安装CentOS7(详细图文步骤)-Ddmit

使用VirtualBox安装CentOS7(详细图文步骤)

本文详细记录了,在Windows平台下,使用VirtualBox安装CentOS7的整个过程。 环境 Windows 10; VirtualBox 5.2.20; CentOS-7-x86_64-DVD-1804; ##安装过程 1.选择系统类型 2.分配内存大小 3....
ddmit的头像-DdmitDdmit6年前
026570
mysql插入生僻字/表情符号Incorrect string value错误解决-Ddmit

mysql插入生僻字/表情符号Incorrect string value错误解决

环境信息 Windows 10; mysql 5.6; MariaDB 10.4; 错误信息 ### SQL: insert into author (ID, NAME, `DESC`, `TYPE`) values (?, ?, ?, ?) ### Cause: java.sql.SQLException: Incorrect str...
ddmit的头像-DdmitDdmit6年前
030700
解决Idea中JS文件Const definitions are not supported by current JavaScript version报错-Ddmit

解决Idea中JS文件Const definitions are not supported by current JavaScript version报错

Idea的js文件报错: Const definitions are not supported by current JavaScript version 解决办法: 即,将Javascript language version改为6.0版本。
ddmit的头像-DdmitDdmit6年前
025510
js获取某一年某季度的日期范围-Ddmit

js获取某一年某季度的日期范围

获取方法: var year = 2018; var quarter = 1; var start = new Date(year,quarter*3-3,1); var end = new Date(year,quarter*3,0); 然后你就可以根据需要初始化了。 格式化示例: function re...
ddmit的头像-DdmitDdmit6年前
017800
CentOS 7安装openssl-Ddmit

CentOS 7安装openssl

本文不再更新,完整安装过程及常见错误处理,请移步:CentOS如何升级openssl到最新版本; 官网:https://www.openssl.org/; 下载页面:https://www.openssl.org/source/; 最新版本:https://w...
ddmit的头像-DdmitDdmit6年前
027170