上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 30 下一页

2023年5月29日

ubuntu22安装docker、redis、mysql及部署net6应用

摘要: 一、更新系统软件包索引 sudo apt update 二、安装docker sudo apt install docker.io 三、在docker中安装Mysql 拉取mysql镜像 docker pull mysql:latest 查看镜像 docker images 运行容器 docker 阅读全文

posted @ 2023-05-29 11:13 zyp_java_net 阅读(473) 评论(0) 推荐(0) 编辑

2023年5月28日

mysql 查询不是今天的所有记录

摘要: 查询数据用到,记录下,不然忘记了。 select * from yj_gryj where DATE(yjsj) <> DATE(NOW()) 阅读全文

posted @ 2023-05-28 19:02 zyp_java_net 阅读(19) 评论(0) 推荐(0) 编辑

2023年5月27日

Plugin 'maven-clean-plugin:3.1.0' not found

摘要: 解决方案 增加如下代码: <groupId>org.apache.maven.plugins</groupId> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifact 阅读全文

posted @ 2023-05-27 06:58 zyp_java_net 阅读(55) 评论(0) 推荐(0) 编辑

2023年5月23日

mysql高版本(8.0)sql_mode = only_full_group_by的解决办法

摘要: 1、原理层面 这个错误一般发生在mysql 5.7以及 5.7以上的版本中,其原因是mysql的默认配置中,sql_mode=“ONLY_FULL_GROUP_BY” 这个配置严格执行了 ‘SQL92标准’,所以很高网站维护人员在升级mysql版本时,都会修改 sql_mode 的配置,使其能兼容。 阅读全文

posted @ 2023-05-23 17:22 zyp_java_net 阅读(590) 评论(0) 推荐(0) 编辑

2023年5月22日

常用git命令

摘要: git initgit checkout -b maingit add README.mdgit commit -m "first commit"git remote add origin http://xxxx:3000/LYXM/gkxt_zyy_hl7.gitgit branch -M mai 阅读全文

posted @ 2023-05-22 22:25 zyp_java_net 阅读(9) 评论(0) 推荐(0) 编辑

2023年5月21日

ubantu 22 服务器 记录

摘要: chl master@1234 sudo wget -O gitea https://dl.gitea.io/gitea/1.19.3/gitea-1.19.3-linux-amd64 useradd chlusermod -a -G sudo chlusermod -s /bin/bash chl 阅读全文

posted @ 2023-05-21 21:16 zyp_java_net 阅读(12) 评论(0) 推荐(0) 编辑

2023年5月16日

Mysql查询报错:The total number of locks exceeds the lock table size

摘要: 为何会出现这种错误这是由于innodb_buffer_pool_size过小导致的。在MySQL5.5之前,广泛使用的和默认的存储引擎是MyISAM,MyISAM使用操作系统缓存来缓存数据,InnoDB需要innodb buffer pool中处理缓存,当InnoDB表执行大批量数据的增删改查时,就 阅读全文

posted @ 2023-05-16 09:36 zyp_java_net 阅读(635) 评论(0) 推荐(0) 编辑

mysql 恢复 data文件

摘要: ibdata1 || ib_buffer_pool || mysql.ibd || 还有自己的数据库文件夹复制到新目录启动mysql 搞定。 阅读全文

posted @ 2023-05-16 09:31 zyp_java_net 阅读(10) 评论(0) 推荐(0) 编辑

2023年5月13日

MySQL如何取当天零点

摘要: SELECT DATE_FORMAT(NOW(),'%Y-%m-%d 00:00:00') yjsj; 阅读全文

posted @ 2023-05-13 20:12 zyp_java_net 阅读(46) 评论(0) 推荐(0) 编辑

2023年4月27日

读书感悟

摘要: 读书感悟 生活坏到一定程度就会好起来,因为它无法更坏。努力过后,才知道许多事情,坚持坚持,就过来了。 有些烦恼,丢掉了,才有云淡风轻的机会。 当一个胖子没有什么不好,最起码可以温暖其他的人。 阅读全文

posted @ 2023-04-27 10:19 zyp_java_net 阅读(21) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 30 下一页

导航