摘要: # 建立第二个 Toncat要修改三个端口,避免冲突 修改tomcat 的conf\server.xml ## 1. Connector 8080 > 8081 ## 2. redirectPort 改为:8445 ## 3. SHUTDOWN 改为:8055 阅读全文
posted @ 2023-07-13 10:06 爱新觉罗LQ 阅读(11) 评论(0) 推荐(0)
摘要: # 防火墙设置 ## 1. 查看防火墙状态 ```bash sudo ufw status ``` ## 2. 打开防火墙 ```bash sudo ufw enable ``` ## 3. 开放端口 ```bash sudo ufw allow 80/tcp ``` ## 4. 查看端口监听状态 阅读全文
posted @ 2023-07-11 18:59 爱新觉罗LQ 阅读(49) 评论(0) 推荐(0)
摘要: # 函数 ## 1. 随机产生字符串 ```sql //函数 delimiter $$ create function ran_string(n int) returns varchar(255) begin declare chars_str varchar(100) default 'abcde 阅读全文
posted @ 2023-07-11 18:04 爱新觉罗LQ 阅读(21) 评论(0) 推荐(0)
摘要: 1. 关于 OpenSSL https://www.yundongfang.com/Yun224517.html https://blog.csdn.net/qq120631157/article/details/130464937 2. 虚拟机进入 命令行界面 长按 Shift 键进入 https 阅读全文
posted @ 2023-07-11 11:42 爱新觉罗LQ 阅读(12) 评论(0) 推荐(0)
摘要: # 1. 安装 nginx https://www.jianshu.com/p/830eaceee167 https://blog.csdn.net/weixin_45766506/article/details/120670094 ```bash 启动 nginx /usr/local/nginx 阅读全文
posted @ 2023-07-09 14:42 爱新觉罗LQ 阅读(22) 评论(0) 推荐(0)
摘要: 安装市场版本后,使用无限重置大法即可!!! ![](https://img2023.cnblogs.com/blog/2171496/202307/2171496-20230707102101042-697205026.png) 阅读全文
posted @ 2023-07-07 10:21 爱新觉罗LQ 阅读(749) 评论(0) 推荐(0)
摘要: # Debug相关设置 ## 1. 简化显示,并显示 IOC 容器中 Bean 个数 自定义 DataViews ![](https://img2023.cnblogs.com/blog/2171496/202306/2171496-20230626113743113-179911973.png) 阅读全文
posted @ 2023-06-26 11:38 爱新觉罗LQ 阅读(14) 评论(0) 推荐(0)
摘要: ![](https://img2023.cnblogs.com/blog/2171496/202306/2171496-20230625171300000-387028355.png) 解决方式: 在 pom.xml 中增加依赖 ```xml org.springframework.boot spr 阅读全文
posted @ 2023-06-25 17:14 爱新觉罗LQ 阅读(7) 评论(0) 推荐(0)
摘要: ```bash #SPRING CONFIG(ConfigFileApplicationListener) spring.config.name =#配置文件名(默认 为 'application' ) spring.config.location =#配置文件的位置 # 多环境配置文件激活属性 s 阅读全文
posted @ 2023-06-23 16:25 爱新觉罗LQ 阅读(70) 评论(0) 推荐(0)
摘要: ![](https://img2023.cnblogs.com/blog/2171496/202306/2171496-20230618135333700-278586851.png) 解决方式:终端也要设置代理 ```bash export https_proxy=http://127.0.0.1 阅读全文
posted @ 2023-06-18 13:54 爱新觉罗LQ 阅读(153) 评论(0) 推荐(0)