摘要: https://baijiahao.baidu.com/s?id=1753641727192314183&wfr=spider&for=pc 234 阅读全文
posted @ 2023-04-23 09:45 psy5choit 阅读(115) 评论(0) 推荐(0)
摘要: public static boolean mergeFiles(String[] fpaths, String resultPath) { if (fpaths == null || fpaths.length < 1 || StringUtils.isEmpty(resultPath)) { r 阅读全文
posted @ 2022-12-30 13:58 psy5choit 阅读(25) 评论(0) 推荐(0)
摘要: 一、在Linux下重启Oracle数据库及监听器: 方法1: 用root以ssh登录到linux,打开终端输入以下命令: cd $ORACLE_HOME #进入到oracle的安装目录 dbstart #重启服务器 lsnrctl start #重启监听器 cd $ORACLE_HOME #进入到o 阅读全文
posted @ 2019-04-21 21:30 psy5choit 阅读(20192) 评论(0) 推荐(0)
摘要: 静默安装命令及过程./runInstaller -silent -force -ignorePrereq -responseFile /home/oracle/db.rsp 说明: -silent 必须要有 -ignorePrereq 如果哪块没有符合要求,不添加可能就安装不过去了 -force 软 阅读全文
posted @ 2019-04-21 21:11 psy5choit 阅读(410) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/zhangzhen894095789/p/6641981.html?utm_source=itdadao&utm_medium=referral 阅读全文
posted @ 2018-06-13 21:40 psy5choit 阅读(105) 评论(0) 推荐(0)
摘要: Rinetd是为在一个Unix和Linux操作系统中为重定向传输控制协议(TCP)连接的一个工具,实现端口映射/转发/重定向。Rinetd是单一过程的服务器,它处理任何数量的连接到在配置文件etc/rinetd中指定的地址/端口对。尽管rinetd使用非闭锁I/O运行作为一个单一过程,它可能重定向很 阅读全文
posted @ 2018-05-24 11:18 psy5choit 阅读(468) 评论(0) 推荐(0)
摘要: 场景 nginx 转发端口 路由器二次转发了,端口不一样 (shiro 或者其他一些权限控制架构会自动跳转,导致的端口不对。) proxy_set_header Host $host:$proxy_port; 这个$proxy_port 写死 nigix做反向代理 注意 :$proxy_port 与 阅读全文
posted @ 2018-05-24 10:23 psy5choit 阅读(2356) 评论(0) 推荐(0)
摘要: 参考文档。。 https://www.cnblogs.com/Dream-Chaser/p/6104815.html 使用 Docker 搭建 Tomcat 运行环境 https://www.cnblogs.com/itech/p/5220122.html 阅读全文
posted @ 2018-04-24 10:30 psy5choit 阅读(137) 评论(0) 推荐(0)
摘要: docker build -t repos_local/centos-jdk7-tomcat7:0.0.1 . -t 设置tag名称, 命名规则registry/image:tag . 表示使用当前目录下的Dockerfile文件 docker run -d -p 8081:8080 --name 阅读全文
posted @ 2018-04-24 10:13 psy5choit 阅读(113) 评论(0) 推荐(0)
摘要: 1.下载镜像 这个目录下面新建 default.conf upstream tomcat77{ server 192.168.0.77:8081;} server{ listen 80; server_name localhost; location / { proxy_pass http://to 阅读全文
posted @ 2018-04-20 18:05 psy5choit 阅读(487) 评论(0) 推荐(0)