上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: 一、运算符 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 中仕 阅读(36) 评论(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 中仕 阅读(38) 评论(0) 推荐(0)
摘要: WordPress搭建完成后,按照步骤来到登陆界面 点击登陆,提示报错 解决办法: 解决办法,修改nginx配置,加入index.php location / { root html; index index.html index.htm index.php; } 阅读全文
posted @ 2024-04-07 14:50 中仕 阅读(10) 评论(0) 推荐(0)
摘要: 一、Nginx的优点 资源消耗低,性能强; 成本低; 支持压缩功能; 支持高可用配置,稳定; 二、Nginx编译安装 2.1、Nginx的版本 nginx.com 商业版 nginx.org 开源版 Tegine 淘宝开发版本 2.2、安装方式 rpm包安装; yum工具安装; 源代码编译安装,指定 阅读全文
posted @ 2024-03-29 16:07 中仕 阅读(122) 评论(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 中仕 阅读(129) 评论(0) 推荐(0)
摘要: 一、drop table和truncate table 1、drop和truncate都是DDL语言; 2、drop table是删除表,包括表的结构,数据,索引等所有信息; 3、TRUNCATE TABLE 仅仅删除表的所有记录,表的结构、索引、触发器、约束等将被保留,后续仍然可以使用该表; 二、 阅读全文
posted @ 2024-03-14 11:41 中仕 阅读(704) 评论(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 中仕 阅读(68) 评论(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 中仕 阅读(38) 评论(0) 推荐(0)
摘要: Kubernetes is a tool that helps us to run and manage applications in containers. It was developed by Google Lab in 2014, and it is also known as k8s. 阅读全文
posted @ 2024-02-20 17:42 中仕 阅读(14) 评论(0) 推荐(0)
摘要: 从节点执行kubectl get deployment报错 Error from server (Forbidden): deployments.apps is forbidden: User "system:node:node02" cannot list resource "deployment 阅读全文
posted @ 2024-02-18 15:26 中仕 阅读(202) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 7 ··· 15 下一页