设置 http 代理 socks5 协议代理 git config --global http.proxy 'socks5://127.0.0.1:10808' git config --global https.proxy 'socks5://127.0.0.1:10808' http / htt ...
分类:
其他好文 时间:
2021-05-24 08:22:53
阅读次数:
0
Global Filters GlobalFilter接口方法和GatewayFilter是一样的,GlobalFilter特别之处在于它的作用是全局的。 1. Combined Global Filter and GatewayFilter Ordering 当请求到来时,Filtering We ...
分类:
其他好文 时间:
2021-05-24 08:20:27
阅读次数:
0
设置了 字符集啊,字体的,重启了很多回就是不行。 最后检索到一篇文章,讲到了 波特率必须设为 57600 所以: 1)Windows 设备管理器那边,把对应的COM端口的端口设置成57600 2)SecureCRT的Session那边,对应吧波特率也改成57600 3)重启 路由器 ...
分类:
其他好文 时间:
2021-05-24 08:12:03
阅读次数:
0
异常现象:session一直处于waiting状态,等待事件为gc current request。 异常原因:rac的代码缺陷导致可能出现的BUG,在频繁的insert或者update操作下,导致节点之间锁的状态不同步。彻底修复可以通过打补丁来解决。 临时解决办法: SQL> oradebug s ...
分类:
其他好文 时间:
2021-05-24 07:53:30
阅读次数:
0
常用命令vncserver 在当前用户下开启一个vnc连接端口,系统会从端口5901开始查看,每次加1,直到有闲置端口。(第一次执行时会要求设置登陆密码)vncserver :1 指定端口号(这里1代表5901)为当前用户开启vnc服务。vncserver --help 查看帮助vncserver ...
分类:
其他好文 时间:
2021-05-24 07:48:03
阅读次数:
0
1、Form连接数据库apps/apps@TEST 2、plsql模拟界面环境(初始化)8008初始化begin fnd_global.APPS_INITIALIZE(user_id => 1671,resp_id =>50716 ,resp_appl_id => 401); mo_global.i ...
分类:
数据库 时间:
2021-05-24 07:15:58
阅读次数:
0
Docker容器管理基础 运行第一个容器,容器启动必须依赖镜像。 [root@localhost ~]# docker image ls #首先查看已有的镜像REPOSITORY TAG IMAGE ID CREATED SIZEnginx latest 62d49f9bab67 3 weeks a ...
分类:
其他好文 时间:
2021-05-24 05:44:20
阅读次数:
0
1.django.db.utils.OperationalError: no such table: django_session 原因:数据库中没有创建对应的表 执行 python manage.py makemigrations; python manage.py migrate 解决 ...
分类:
其他好文 时间:
2021-05-24 05:27:32
阅读次数:
0
使用用户对数据库创建数据表时报权限不足解决方法 grant connect, resource , dba to FORMDESIGN; grant create session to FORMDESIGN; grant create session,create table to FORMDESI ...
分类:
数据库 时间:
2021-05-24 04:31:11
阅读次数:
0
Git 和 HTTPS git clone https://xxx.daFei 会返回 SSL certificate problem: unable to get local issuer certificate,这时候需要把HTTPS关闭一下 git config --global http.s ...
分类:
Web程序 时间:
2021-05-24 04:28:43
阅读次数:
0