上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 72 下一页
摘要: test -d '/usr/local/nginx' || mkdir -p '/usr/local/nginx'test -d '/usr/local/nginx/sbin' \ || mkdir -p '/usr/local/nginx/sbin'test ! -f '/usr/local/ng 阅读全文
posted @ 2022-01-03 17:58 tonggc1668 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 下面的三种方法是等价的: /dev/null 空设备 黑洞 1)1>/dev/null 2>/dev/null 2)1>/dev/null 2>&1 3)&>/dev/null 则程序执行后,没有任何的输出 阅读全文
posted @ 2022-01-03 17:53 tonggc1668 阅读(122) 评论(0) 推荐(0) 编辑
摘要: linux非root用户执行开机启动程序 https://www.cnblogs.com/lanyangsh/p/8543433.html [root@nginx rc.d]# cd /etc/rc.d[root@nginx rc.d]# sed -i '13a /usr/local/nginx/s 阅读全文
posted @ 2022-01-02 23:41 tonggc1668 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: Linux查看CPU详细信息 https://www.jianshu.com/p/a0ab0ccb8051 查看所有逻辑CPU的个数 cat /proc/cpuinfo | grep "processor" | wc -l Linux下查看CPU型号,内存大小,硬盘空间的命令(详解) https:/ 阅读全文
posted @ 2021-12-30 10:27 tonggc1668 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 深入理解Spring —— Bean 何时被创建 https://blog.csdn.net/qq_23980427/article/details/80888040 Spring什么时候实例化Bean的? https://blog.csdn.net/dghkgjlh/article/details 阅读全文
posted @ 2021-12-20 18:10 tonggc1668 阅读(180) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_35973521/article/details/114864260 BeanDefinitionRegistryPostProcessor实现动态添加到spring容器 https://www.cnblogs.com/songfahzun/ 阅读全文
posted @ 2021-12-20 17:19 tonggc1668 阅读(369) 评论(0) 推荐(0) 编辑
摘要: MySQL关于only_full_group_by错误的解决方案 https://jingyan.baidu.com/article/5552ef471a15d2108ffbc9ef.html select @@sql_mode;set @@sql_mode='STRICT_TRANS_TABLES 阅读全文
posted @ 2021-12-17 12:27 tonggc1668 阅读(85) 评论(0) 推荐(0) 编辑
摘要: mvn install:install-file -Dfile=e:\QRCode.jar -DgroupId=QRCode -DartifactId=QRCode -Dversion=3.0 -Dpackaging=jar 阅读全文
posted @ 2021-12-14 14:21 tonggc1668 阅读(333) 评论(0) 推荐(0) 编辑
摘要: create table tb_orders ( order_time TIMESTAMP(3),product_id STRING,price FLOAT, WATERMARK FOR order_time AS order_time - INTERVAL '0' MINUTE ) with ( 阅读全文
posted @ 2021-12-13 18:29 tonggc1668 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Nacos开启认证,Dubbo注册失败目前定制化服务在10.1.2.227注册dubbo 提示 403 unknown user微服务模块注册成功升级dubbo至2.7.13以上,同时com.alibaba.spring:spring-context-support升级只1.0.11<depende 阅读全文
posted @ 2021-12-01 14:51 tonggc1668 阅读(490) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 72 下一页