上一页 1 2 3 4 5 6 7 8 ··· 35 下一页
摘要: 拉取tomcat镜像 docker pull tomcat:latest 运行tomcat docker run -d -p 8090:8080 --name tomcat_doc -v /root/web/:/usr/local/tomcat/webapps tomcat:latest 阅读全文
posted @ 2023-04-10 18:05 chenzechao 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ls -l /proc/pid [root@report-prod logs]# ll /proc/11494 total 0 -r--r--r-- 1 root root 0 Mar 16 06:55 status -r--r--r-- 1 root root 0 Mar 16 06:55 sta 阅读全文
posted @ 2023-03-16 09:27 chenzechao 阅读(508) 评论(0) 推荐(0) 编辑
摘要: -- mysql 查看无主键的表 SELECT * FROM information_schema.`TABLES` t LEFT JOIN information_schema.STATISTICS s ON t.TABLE_SCHEMA = s.TABLE_SCHEMA AND t.table_ 阅读全文
posted @ 2023-03-10 12:47 chenzechao 阅读(19) 评论(0) 推荐(0) 编辑
摘要: ### 1. 列出trino中所有的表 trino --server IP:8080 --catalog hive --user batch_dev --schema=SCHEMA --execute="show tables" >table_list ### 2. 剔除不必要的表,并分出表和视图 阅读全文
posted @ 2023-02-16 08:54 chenzechao 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 一、流程图的符号规范 二、流程图的结构规范 流程图有三大结构,分别是顺序结构、选择结构和循环结构。 1)顺序结构 这种结构最简单,各个步骤是按先后顺序执行的。如图,A、B、C是三个连续的步骤,它们是按顺序执行的,即完成上一个框中指定的操作才能再执行下一个动作。 2) 选择结构 选择结构又称分支结构, 阅读全文
posted @ 2023-01-18 14:41 chenzechao 阅读(444) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-12-06 15:46 chenzechao 阅读(1) 评论(0) 推荐(0) 编辑
摘要: # 输出双引号 awk -F "" '{print "\""$1"\"\,"}' "xxxxx", 使用""双引号把一个双引号括起来,然后用转义字符\对双引号进行转义,输出双引号。 # 输出单引号 awk -F "" '{print "'\''"$1"'\'\,'"}' 'xxxxx', # 使用一 阅读全文
posted @ 2022-12-05 15:16 chenzechao 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 问题描述 使用docker-compose启动时,报错Cannot autolaunch D-Bus without X11 $DISPLAY ...Cannot autolaunch D-Bus without X11 $DISPLAY... 解决方法 问题出在Linux缺少一个密码管理包gnup 阅读全文
posted @ 2022-10-23 08:25 chenzechao 阅读(89) 评论(0) 推荐(0) 编辑
摘要: -- 第一个会话执行 drop table if exists test1; create table test1( id int not null ,name int ,primary key(id) ,unique key(name) ) engine=innodb ; begin; inser 阅读全文
posted @ 2022-10-17 17:53 chenzechao 阅读(933) 评论(0) 推荐(0) 编辑
摘要: http://t.zoukankan.com/yunfeifei-p-13158845.html 阅读全文
posted @ 2022-09-25 00:45 chenzechao 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 35 下一页