会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
渝思
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
14
下一页
2024年4月1日
docker——gitlab-ce-未完
摘要: 1、拉取gitlab镜像 docker pull gitlab/gitlab-ce:latest 2、创建映射文件 mkdir -p /docker_server/gitlab/etc mkdir -p /docker_server/gitlab/log mkdir -p /docker_serve
阅读全文
posted @ 2024-04-01 13:55 渝思
阅读(114)
评论(0)
推荐(0)
2024年3月27日
vue命令随记
摘要: Vue命令随记 清除npm缓存 npm cache clean --force 取消ssl验证: npm config set strict-ssl false 安装依赖库 npm install
阅读全文
posted @ 2024-03-27 11:16 渝思
阅读(10)
评论(0)
推荐(0)
vue异常——Vue项目 npm install 问题:Error while executing
摘要: 信息 npm ERR! Error while executing: npm ERR! D:\CodeTool\Git\Git\cmd\git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git npm ERR! npm ER
阅读全文
posted @ 2024-03-27 11:12 渝思
阅读(261)
评论(0)
推荐(0)
2024年3月26日
orcale异常——oracle操作异常
摘要: 关闭sessionId 查询session_id 列 select session_id from v$locked_object; 根据session_id 列查出serial# SELECT sid, serial#, username, osuser FROM v$session where
阅读全文
posted @ 2024-03-26 16:18 渝思
阅读(9)
评论(0)
推荐(0)
2024年3月12日
git异常——error: failed to push some refs to 'gitxx.com:xxx.git'
摘要: 信息 提交文件出现错误:error: failed to push some refs to 'gitxx.com:xxx.git' 处理 出现错误的主要原因是gitee中的README.md文件不在本地代码目录中 此时我们要执行git pull --rebase origin master命令将R
阅读全文
posted @ 2024-03-12 11:17 渝思
阅读(17)
评论(0)
推荐(0)
2024年3月11日
git异常——fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream
摘要: 问题:当执行git push命令的时候,报错如下: fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream 原因当前分支主服务
阅读全文
posted @ 2024-03-11 15:50 渝思
阅读(1200)
评论(0)
推荐(0)
2024年1月17日
springboot异常——org.apache.tomcat.util.http.fileupload.impl.FileSizeLimitExceededException---文件上传超出了tomcat的限制大小
摘要: 报错的原因 springBoot项目自带的tomcat对上传的文件大小有默认的限制,SpringBoot官方文档中展示:每个文件的配置最大为1Mb,单次请求的文件的总数不能大于10Mb。 解决方法 Spring Boot 2.0 版本 在 【application】配置文件中加入如下代码: # ma
阅读全文
posted @ 2024-01-17 11:19 渝思
阅读(1528)
评论(0)
推荐(0)
2023年12月28日
mybatisplus——自带insert,update方法注意点
摘要: mybatisplus-自带insert,update方法注意点 字段名不能命名与数据库系统相同的名称,否则字段会找不到,因为默认插入sql自带 ``符号。
阅读全文
posted @ 2023-12-28 15:03 渝思
阅读(282)
评论(0)
推荐(0)
2023年12月21日
mysql异常——Host 'host.docker.internal' is not allowed to connect to this MySQL server使用ip链接失败
摘要: 报错描述: 空指针,来自服务器的消息:"Host ’ Host .docker.internal’ 不允许连接到 MySQL 服务器" 登陆mysql 键入命令mysql -uroot -p,回车后提示你输入密码,输入12345,然后回车即可进入到mysql中 选择数据库 use mysq
阅读全文
posted @ 2023-12-21 17:09 渝思
阅读(1604)
评论(0)
推荐(1)
2023年12月11日
mysql异常——[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and
摘要: 解决方案: 只修改当前数据库的SQL_MODE -- 查看SQL_MODE SELECT @@sql_mode; -- 修改SQL_MODE SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
阅读全文
posted @ 2023-12-11 17:15 渝思
阅读(58)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
14
下一页
公告