摘要: ## ElasticSearch&Kibana https://doc.czy21.com/container/es/ ## Logstash https://doc.czy21.com/container/logstash/ 阅读全文
posted @ 2023-07-28 18:23 czy21 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 环境+版本 k8s: v1.21.2 hbase: v2.3.6 dockerfile FROM openjdk:8-jdk ARG SSH_PUB='ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3nTRJ/aVb67l1xMaN36jmIbabU7Hiv/xpZ8 阅读全文
posted @ 2021-08-14 20:09 czy21 阅读(1125) 评论(2) 推荐(0) 编辑
摘要: 环境+版本 k8s: v1.21.1 hadoop: 3.2.2 dockerfile FROM openjdk:8-jdk ENV HADOOP_VERSION=3.2.3 ENV HADOOP_TGZ_URL=https://mirrors.tuna.tsinghua.edu.cn/apache 阅读全文
posted @ 2021-08-14 20:00 czy21 阅读(1761) 评论(11) 推荐(1) 编辑
摘要: mysql8.0 docker版部署 https://doc.czy21.com:8443/docker/mysql/ 查看数据库事务隔离级别 mysql> show variables like 'transaction%'; mysql> select @@transaction_isolati 阅读全文
posted @ 2021-07-31 22:14 czy21 阅读(1264) 评论(1) 推荐(0) 编辑
摘要: CHECKPOINT --用于检查当前工作的数据库中被更改过的数据页或日志页,并将这些数据从数据缓冲器中强制写入硬盘 GO DBCC FreeProcCache --从缓冲池中删除所有缓冲区 DBCC DropCleanBuffers --从过程高速缓存中删除所有元素 GO DBCC FreeSys 阅读全文
posted @ 2020-06-18 10:55 czy21 阅读(208) 评论(0) 推荐(0) 编辑
摘要: Wan设置 1.IP -> DHCP Client,DHCP Tab 下Interface选wan Lan设置 1.IP -> DHCP Server -> DHCP Setup,dns 使用lan口ip 2.IP -> Firewall -> NAT -> Action -> masquerade 阅读全文
posted @ 2020-03-29 18:26 czy21 阅读(2814) 评论(0) 推荐(0) 编辑
摘要: test引用单元测试 // module A build.gradle task testsJar(type: Jar, dependsOn: testClasses) { classifier = 'tests' from sourceSets.test.output } configuratio 阅读全文
posted @ 2019-06-17 18:55 czy21 阅读(751) 评论(0) 推荐(0) 编辑
摘要: - 语言: [jdk-8](#jdk-8) [jdk-17](#jdk-17) [python](#python) [go](#go) [rust](#rust) - 工具: [git](#git) [maven](#maven) # jdk-8 ```yaml JAVA_HOME: - C:\Pr 阅读全文
posted @ 2019-01-28 10:41 czy21 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 系统: 用户 权限 文件 磁盘 系统 服务: ssh docker 其他: mac 用户 useradd -d /home/[user] -m [user] # 添加用户,并创建用户目录 adduser [user] # 添加用户 userdel -r [user] # 删除用户 usermod - 阅读全文
posted @ 2018-12-25 17:49 czy21 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 一.root用户登录远程linux服务器 1.更改ssh默认端口 vim /etc/ssh/sshd_configPort 自定义端口号PermitRootLogin yes 允许root登录PubkeyAuthentication yes 允许公匙认证PasswordAuthentication 阅读全文
posted @ 2018-11-02 21:52 czy21 阅读(18644) 评论(0) 推荐(0) 编辑