摘要:
【docker安装redis】通过docker命令 1.拉取镜像 docker pull redis #拉取最后版本的docker-redis镜像 docker pull redis:版本号 #拉取指定版本的redis镜像 2.查看已安装的镜像 docker images 3.创建容器且启动容器 d 阅读全文
摘要:
【问题】 请求报500,一直以为是后台问题 【原因】 前端thymeleaf模板代码没写完整原因(既然用了就要写好格式) 【解决】 将用到thymeleaf标签代码补全,主要原因没用这个@{}补全th:href标签 <a th:href="@{/uploadmoment/mvmain}" title 阅读全文
![ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - [log,175] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception thymeleaf: Could not parse as expression: ""](https://img2020.cnblogs.com/blog/1639345/202112/1639345-20211207090750609-652369193.png)
摘要:
【问题】: 在windows上安装了个redis,然后配置这两个文件(主要是这个redis.windows.conf文件),改了端口,设置了局域网访问的ip,加了个密码。 然后双击redis-server.exe启动 发现端口号竟然没变 【原因】 仔细看才发现 原来读取的是这个配置文件 【解决】 看 阅读全文
摘要:
zip包解压 unzip xxx.zip 权限赋值 chmod 777 xxx 777代表所有权限 windows文件转linux文件 dos2unix xxx 查看log日志文件 tail -f xxx.log 阅读全文
摘要:
【问题】 使用Navicat连接mysql 然后报了这个错误 1146 【原因】 手贱删了某个自带的数据库 【解决方案】 cd /usr/local/mysql/bin ./mysql_upgrade -u root -p 输入密码就解决了 阅读全文
摘要:
linux防火墙没关 查看状态: systemctl status firewalld 禁用: systemctl stop firewalld 阅读全文
摘要:
问题 启动Nacos注册中心窗口秒关 原因 没配置`JAVA_HOME`环境变量JDK路径 或JDK多版本冲突 解决 配置`JAVA_HOME`环境变量 成功运行 阅读全文
摘要:
【问题】 安装docker出现的问题 GPG key retrieval failed: [Errno 12] Timeout on https://download.docker.com/linux/centos/gpg: (28, 'Operation timed out after 30001 阅读全文
摘要:
问题 原因 解决 在数据库连接配置url末尾加上防乱码UTF-8 ?useUnicode=true&characterEncoding=utf8 阅读全文
摘要:
所有题目答案都不完整,这些针对个人所整理的 SpringBoot有哪些核心注解和配置以及和spring的区别? https://www.cnblogs.com/lin02/p/11480535.html https://www.cnblogs.com/lin02/p/11469541.html sp 阅读全文