遇见的Bug
Mls_Lucky
梅花香自苦寒来。
展开
-
SpringBoot连接Linux服务器上的Redis报错Unable to connect to Redis
SpringBoot连接Linux服务器上的Redis报错:Unable to connect to Redis解决方案:1.关闭linux防火墙1:查看防火状态systemctl status firewalld2:暂时关闭防火墙systemctl stop firewalld3:永久关闭防火墙systemctl disable firewalld4:重启防火墙systemctl enable firewalld 2.找到redis.conf配置文件,注释一行配置#原创 2021-04-19 20:13:07 · 876 阅读 · 0 评论 -
babel无法加载文件 C:\Users\win\AppData\Roaming\npm\babel.ps1,因为在此系统上禁止运行脚本。
babel报错: babel : 无法加载文件 C:\Users\win\AppData\Roaming\npm\babel.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 执行策略 中的 about_Execution_Policies。解决方法方法一: 重启vscode方法二: 鼠标右键vscode图标,兼容性选择"以管理员身份运行"方法三:在vscode终端获取执行政策: get-ExecutionPolicy如果得到的政策是限制:Restricted ,则重新设置转载 2021-04-02 18:58:34 · 1116 阅读 · 1 评论 -
误删云服务器的usr目录,导致无法连接到远程服务器
如何重装系统如果你买的阿里云服务器是用来学习的,没有存储特别重要的数据,建议重装系统1,找到ECS列表阿里云官网 >【顶部】控制台 >【左侧一级菜单】云服务器ECS >【二级菜单】实例 >【顶部菜单】切换到目标地域2,找到要更换系统的ECS >【列表右侧】鼠标点击“更多”选项3,指向“实例和系统盘”> 选择“更换系统盘”4,在后续的界面选择合适的官网系统镜像安装即可。阿里云参考文档: https://developer.aliyun.com/art原创 2021-02-11 10:52:02 · 473 阅读 · 0 评论 -
IDEA新建xml文件显示内容为普通文本
解决方案: https://blog.csdn.net/mr_zhoujj/article/details/103887373转载 2020-12-29 16:47:49 · 624 阅读 · 0 评论 -
idea中maven项目一直卡在Resolving Maven dependencies
问题一每次在maven项目的pom.xml文件中添加依赖以后,开始下载jar文件,但是,文件已经下载后,仍然一直卡在Resolving Maven dependencies,有时要等很久,有时需要关掉重启idea才可以解决方案https://blog.csdn.net/gnail_oug/article/details/79850886问题二在SpringBootTest里面启动,一直卡在Resolving Maven dependencies:如图解决方案原因: 我的Test导入的是imp原创 2020-12-20 20:49:13 · 1258 阅读 · 0 评论 -
Springboot对数据库进行查询操作报错
error:Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause每次查询所有数据都会报这个错误,我以为是数据库的问题,然后我使用delete操作,发现并没有问题,删除成功。之后我在想是原创 2020-12-17 17:21:21 · 742 阅读 · 0 评论 -
使用centos7安装pcre 输入命令 make && make install 出现如下错误
使用centos7安装pcre 输入命令 make && make install 出现如下错误CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /root/BaiduPCS/build-aux/missing aclocal-1.15 -I m4/root/BaiduPCS/build-aux/missing: line 81: aclocal-1.15: command not foundWARNING: '原创 2020-08-13 20:34:43 · 1865 阅读 · 0 评论 -
VirtualBox突然找不到Centos镜像
报错: Bringing machine ‘default’ up with ‘virtualbox’ provider…Your VM has become “inaccessible.” Unfortunately, this is a critical errorwith VirtualBox that Vagrant can not cleanly recover from. Please open VirtualBoxand clear out your inaccessible virtu转载 2020-12-10 19:13:06 · 459 阅读 · 1 评论 -
连接MySQL报错Host is not allowed to connect to this MySQL server
基于sqlyog连接linux环境下的mysql报错解决方案。1 登录mysql : mysql -uroot -p; 并输入密码2 use mysql 使用mysql 数据库2 创建远程登陆用户并授权 :grant all PRIVILEGES on *.* to root@'47.96.138.137' identified by '12345678 ';3 执行立即生效:flush privileges;4.select host,user from user;查看权限是转载 2020-12-06 13:23:52 · 292 阅读 · 0 评论 -
安装MySQL-server 报错Header V3 DSA/SHA1 Signature
亲测有效:https://blog.csdn.net/wisdom_c_1010/article/details/55506081原创 2020-08-15 15:12:19 · 223 阅读 · 0 评论 -
idea无法debug调试,启动报错,但是run可以正常运行
使用debug发现报错FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_LOAD(196)ERROR: transport library not found: dt_socketERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_LOAD(509)JDWP exit error AGE原创 2020-09-05 14:29:11 · 2625 阅读 · 0 评论