1 2 3 4 5 ··· 14 下一页
摘要: 一、报名 https://training.linuxfoundation.cn/ 考试地址:https://trainingportal.linuxfoundation.org/learn/course/certified-kubernetes-administrator-china-exam-c 阅读全文
posted @ 2024-06-18 10:54 中仕 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1、执行etcd备份,发现命令找不到,接下来安装命令 wget "https://github.com/coreos/etcd/releases/download/v3.3.9/etcd-v3.3.9-linux-amd64.tar.gz" 解压 tar -xvf etcd-v3.3.9-linux 阅读全文
posted @ 2024-05-21 14:43 中仕 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 一、运算符 1.1、算术运算符 练习: package Package01; public class ArithmeticoperatorDemo1 { public static void main(String[] args) { System.out.println(3+2); System 阅读全文
posted @ 2024-04-15 17:27 中仕 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 一、搭建实验环境 下载JDK https://www.oracle.com/java/technologies/downloads/#jdk17-windows 安装完成后配置环境变量 https://c.biancheng.net/view/jbr3inb.html 二、编写第一个JAVA pub 阅读全文
posted @ 2024-04-10 10:11 中仕 阅读(22) 评论(0) 推荐(0) 编辑
摘要: WordPress搭建完成后,按照步骤来到登陆界面 点击登陆,提示报错 解决办法: 解决办法,修改nginx配置,加入index.php location / { root html; index index.html index.htm index.php; } 阅读全文
posted @ 2024-04-07 14:50 中仕 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 一、Nginx的优点 资源消耗低,性能强; 成本低; 支持压缩功能; 支持高可用配置,稳定; 二、Nginx编译安装 2.1、Nginx的版本 nginx.com 商业版 nginx.org 开源版 Tegine 淘宝开发版本 2.2、安装方式 rpm包安装; yum工具安装; 源代码编译安装,指定 阅读全文
posted @ 2024-03-29 16:07 中仕 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 一、mysqldump备份数据库 mysqldump 是逻辑备份,缺点:效率不是很高,优点:简单、方便、可靠,迁移; 适用于数据量50G以内的数据库; 1.1、不加参数备份 [root@mysql ~]# mysqldump -uroot -p db1>db_$(date +%F)db.sql En 阅读全文
posted @ 2024-03-29 10:39 中仕 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 一、drop table和truncate table 1、drop和truncate都是DDL语言; 2、drop table是删除表,包括表的结构,数据,索引等所有信息; 3、TRUNCATE TABLE 仅仅删除表的所有记录,表的结构、索引、触发器、约束等将被保留,后续仍然可以使用该表; 二、 阅读全文
posted @ 2024-03-14 11:41 中仕 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 一、What is Linux Operating System The Linux Operating System is a type of operating system that is similar to Unix, and it is built upon the Linux Kern 阅读全文
posted @ 2024-03-06 17:27 中仕 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Kubernetes is an open-source platform that manages Docker containers in the form of a cluster. Along with the automated deployment and scaling of cont 阅读全文
posted @ 2024-02-26 15:17 中仕 阅读(3) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 14 下一页