摘要:
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 阅读全文
摘要:
Vue命令随记 清除npm缓存 npm cache clean --force 取消ssl验证: npm config set strict-ssl false 安装依赖库 npm install 阅读全文
摘要:
信息 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 阅读全文
摘要:
关闭sessionId 查询session_id 列 select session_id from v$locked_object; 根据session_id 列查出serial# SELECT sid, serial#, username, osuser FROM v$session where 阅读全文
摘要:
信息 提交文件出现错误:error: failed to push some refs to 'gitxx.com:xxx.git' 处理 出现错误的主要原因是gitee中的README.md文件不在本地代码目录中 此时我们要执行git pull --rebase origin master命令将R 阅读全文
摘要:
问题:当执行git push命令的时候,报错如下: fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream 原因当前分支主服务 阅读全文
摘要:
报错的原因 springBoot项目自带的tomcat对上传的文件大小有默认的限制,SpringBoot官方文档中展示:每个文件的配置最大为1Mb,单次请求的文件的总数不能大于10Mb。 解决方法 Spring Boot 2.0 版本 在 【application】配置文件中加入如下代码: # ma 阅读全文
摘要:
mybatisplus-自带insert,update方法注意点 字段名不能命名与数据库系统相同的名称,否则字段会找不到,因为默认插入sql自带 ``符号。 阅读全文
摘要:
报错描述: 空指针,来自服务器的消息:"Host ’ Host .docker.internal’ 不允许连接到 MySQL 服务器" 登陆mysql 键入命令mysql -uroot -p,回车后提示你输入密码,输入12345,然后回车即可进入到mysql中 选择数据库 use mysq 阅读全文
摘要:
解决方案: 只修改当前数据库的SQL_MODE -- 查看SQL_MODE SELECT @@sql_mode; -- 修改SQL_MODE SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','')); 阅读全文