重置Oracle MFT二步验证

步骤 先打开登录页面,然后在输入邮箱和密码页面中记下以 https://idcs-********.identity.oraclecloud.com/ 开头的网址 替换https://idcs-*****.identity.oraclecl

ssh 连接服务器后自动进入 tmux 会话

在使用了一阵 tmux 之后(看了一下最早建的 tmux 的笔记,是2013年),逐渐习惯了各种 tmux 的操作,但是每次 ssh 连接服务器后都要手动执行 tmux attach 进入 tmux 会话,有点

Maven命令上传本地 jar 文件到私服

命令 1 mvn deploy:deploy-file -Dfile=cat-client-3.0.0.jar -DgroupId=com.dianping.cat -DartifactId=cat-client -Dversion=3.0.0 -Drepo.user=用户名 -Drepo.pass=密码 -DrepositoryId=rdc-releases -Durl=https://packages.aliyun.com/maven/repository/xxxx/ 缘由 gayhub 中下载了一些 java 源码,编译时候需要引用一些不在 Maven 中央仓库

Java自动提取网站的友情链接

代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

两层 Nginx 转发请求端口号

TL;DR 80或者443的 nginx 增加 1 2 3 4 5 6 7 8 9 10 11 12 13 location / { proxy_pass http://127.0.0.1:8612/; add_header Access-Control-Allow-Methods *; add_header Access-Control-Max-Age 3600; add_header Access-Control-Allow-Origin $http_origin; add_header Access-Control-Allow-Credentials true; proxy_set_header Host $host; proxy_set_header X-Forwarded-Proto $scheme; #要透传的协议 proxy_set_header X-Forwarded-Port $server_port; #要透传的接口 if ($request_method = OPTIONS){ return