上一页 1 2 3 4 5 6 7 8 9 ··· 43 下一页

2022年11月17日

mysql8.0修改用户密码

摘要: 方式一(刚安装的数据库只能使用此) alter user user() identified BY '123456'; 方式二 alter user user() identified BY '123456'; alter user `root` identified by '123456'; -- 阅读全文

posted @ 2022-11-17 15:52 小石头小祖宗 阅读(9) 评论(0) 推荐(0) 编辑

mysql查看所有表的详细信息和注释(表、视图、函数等),简要查看表字段信息describe、show full columns。查看对象DDL语句、建表语句

摘要: 1.总结 1.1.查看所有对象的详细信息和注释(表、视图、函数等) -- 1.表、视图、字段的详细信息、注释说明 -- 1.1.表、视图 select * from information_schema.tables where table_schema in ('test') order by t 阅读全文

posted @ 2022-11-17 14:37 小石头小祖宗 阅读(94) 评论(0) 推荐(0) 编辑

2022年11月16日

linux后台运行 nohup java -jar ${jarName} > /log/${jarName}_all.log 2>&1 &

摘要: nohup java -jar ${jarName} > /log/${jarName}_all.log 2>&1 & 1、nohup和&的功效 https://blog.csdn.net/hl449006540/article/details/80216061 2、>与>>的区别 均是将日志输出到 阅读全文

posted @ 2022-11-16 14:37 小石头小祖宗 阅读(21) 评论(0) 推荐(0) 编辑

CentOS安装Consul

摘要: https://blog.csdn.net/xwnxwn/article/details/123292906 阅读全文

posted @ 2022-11-16 14:21 小石头小祖宗 阅读(4) 评论(0) 推荐(0) 编辑

2022年11月3日

浓眉大眼的CentOS8 停止维护了。从CentOS 8到CentOS Stream,到底发生什么事了

摘要: 浓眉大眼的CentOS8 停止维护了 从CentOS 8到CentOS Stream,到底发生什么事了? 阅读全文

posted @ 2022-11-03 10:25 小石头小祖宗 阅读(10) 评论(0) 推荐(0) 编辑

2022年11月2日

MySQL查看修改session、global变量。MySQL8持久化变量(persist),无需修改配置文件

摘要: 1. 查询 -- 查看某个指定的变量 select @@session.sort_buffer_size; select @@global.sort_buffer_size; 或 -- 不写like询所有。 show session variables like 'sort_buffer_size% 阅读全文

posted @ 2022-11-02 16:58 小石头小祖宗 阅读(75) 评论(0) 推荐(0) 编辑

NPM配置阿里云(淘宝)镜像仓库

摘要: 一.通过命令配置淘宝镜像 查看当前使用的镜像地址命令 npm config get registry 切换为阿里云镜像命令(安装一些package容易报错) npm config set registry http://registry.npmmirror.com 如果返回 http://regis 阅读全文

posted @ 2022-11-02 15:00 小石头小祖宗 阅读(40) 评论(0) 推荐(0) 编辑

2022年10月30日

linux shell 查找java进程并杀进程脚本

摘要: shutdown.sh JarName=lishuoboy-***.jar # 1、查找进程们(注意可能返回多个) pIdArr=$(ps -ef | grep java | grep ${JarName} | grep "spring.profiles.active" | grep -v "gre 阅读全文

posted @ 2022-10-30 00:38 小石头小祖宗 阅读(115) 评论(0) 推荐(0) 编辑

2022年10月29日

通过Maven插件wagon-maven-plugin实现快速部署SpringBoot项目至服务器

摘要: https://blog.51cto.com/lovebetterworld/2839981#wagonmavenplugin_9 代码见项目 lishuoboy-navigation 阅读全文

posted @ 2022-10-29 23:02 小石头小祖宗 阅读(7) 评论(0) 推荐(0) 编辑

2022年10月27日

《下班》藏尾诗

摘要: 《下班》 作者:李硕 天已黑班未下, 已天黑未下班; 未下班已天黑, 班未下天已黑。 阅读全文

posted @ 2022-10-27 17:42 小石头小祖宗 阅读(10) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 43 下一页

导航