在httpd.conf文件中,启用 proxy_wstunnel_module 模块 LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so ...
分类:
Web程序 时间:
2021-02-23 13:58:13
阅读次数:
0
【应用场景】 选中表格的一条数据,然后点击下载pdf文件,实现下载功能 一:pdf文件下载功能 1、后端接口地址,首先在axios.post的请求中把默认的 " responseType:‘json’ " 改为" responseType:‘blob’ 如果是其他文件格式,参考MIME多用途互联网邮 ...
分类:
其他好文 时间:
2021-02-22 12:36:39
阅读次数:
0
方式1:js代码,延迟2秒后跳转到首页 <script> setTimeout(function () { location.href = '/'; }, 2000);</script> 方式2:利用响应头部进行重定向 response = make_response('注销并进行重定向', 302 ...
分类:
其他好文 时间:
2021-02-22 12:34:44
阅读次数:
0
Linux的多用户概念是指多个用户同时可以使用这个系统。每个用户一般在/home下的都有自己的用户目录,root的家目录在/root。用户执行任务的时候一般在自己的家目录中执行,用户之间互相不影响。 1.查看当前登录用户 2.查看所有用户信息 cat /etc/passwd 3. 查看用户在哪些组里 ...
分类:
系统相关 时间:
2021-02-22 12:28:08
阅读次数:
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
我测试了1.20.2版本配置glusterfs结果使用不了。记录时间2021-2-19 一、环境介绍 2台服务器都为存储服务器,都有一块20G的数据盘 注意:数据盘不要格式化操作 [root@master ~]# fdisk -l /dev/vdb Disk /dev/vdb: 21.5 GB, 2 ...
分类:
其他好文 时间:
2021-02-20 12:43:34
阅读次数:
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
2020/12/22 数据库字段创建异常 今天同步oracle挡板代码时,发现抛出了异常,invocationTargetException,同步的内容有支持接口锁定和支持场景/案例收藏功能。之前是在mysql版本维护的,现在要同步到oracle中。在oracle新加表字段时,明明已经创建好了字段, ...
分类:
数据库 时间:
2021-02-20 12:17:35
阅读次数:
0
//出发器 ALTER trigger [dbo].[trsx] on [dbo].[T1] for insert as BEGIN DECLARE @URL VARCHAR(1000) set @URL='http://192.168.1.xx/api/blade-meal/meal/menu/g ...
分类:
数据库 时间:
2021-02-20 12:17:00
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>正则表达式测试</title> <link rel="stylesheet" href="b ...
分类:
其他好文 时间:
2021-02-20 12:01:53
阅读次数:
0