主要公开日志

跳转到导航 跳转到搜索

所有linuxsa wiki公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。

日志
最新 | 最旧) 查看(较新50条 | )(20 | 50 | 100 | 250 | 500
  • 2026年6月2日 (二) 17:14 Evan 留言 贡献创建了页面Probe for spring boot (创建页面,内容为“<pre> 对于 **Spring Boot 跑在 Kubernetes**,现在比较推荐的做法是: * **Startup Probe**:解决应用启动慢的问题 * **Readiness Probe**:判断是否接收流量 * **Liveness Probe**:判断是否需要重启 不要三个 Probe 都配成一样。 --- ## 1. Spring Boot 开启 Actuator 通常在 `application.yml`: ```yaml management: endpoints: web: exposure: include: health endpoint: health: probes:…”)
  • 2026年5月25日 (一) 15:11 Evan 留言 贡献创建了页面183 Winter Clothes (创建页面,内容为“<pre> A:Bye, mom! B:Wait, Jimmy, it’s cold outside. Put a hat on! A:Ok. Bye! B:No, wait, you will be too cold without mittens. A:Alright. See ya! B:Hold on, with that wind, you’re going to catch a cold. Wear this scarf. A:Ok, see you after school... B:Oh... and ear muffs! Put these on... here we go. A:Mom? B:Yes, honey... A:I... I can’t breathe. mitten [ˈmɪt(ə)n] n.(仅拇指分开的)两指手套 scarf 美: [skɑrf] n.围巾;头巾;披巾…”)
  • 2026年5月9日 (六) 07:54 Evan 留言 贡献创建了页面分类:Java (创建页面,内容为“java”)
  • 2026年5月9日 (六) 07:42 Evan 留言 贡献创建了页面Java基础 (创建页面,内容为“=2026= <pre> cat Main.java import java.util.*; public class Main { public static int[] twoSum(int[] nums, int target) { HashMap<Integer, Integer> map = new HashMap<>(); for (int i = 0; i < nums.length; i++) { int need = target - nums[i]; if (map.containsKey(need)) { return new int[]{map.get(need), i}; } map.put(nums[i], i); } return new int[]{}; }…”)
  • 2026年4月19日 (日) 04:05 Evan 留言 贡献创建了页面分类:Vps (创建页面,内容为“vps”)
  • 2026年4月19日 (日) 03:12 Evan 留言 贡献创建了页面How to stop these bots (创建页面,内容为“<pre> docker logs mediawiki --tail 50 172.18.0.1 - - [19/Apr/2026:02:51:35 +0000] "GET /index.php?dir=prev&offset=20240308004504&target=Evan&title=%E7%89%B9%E6%AE%8A:%E7%94%A8%E6%88%B7%E8%B4%A1%E7%8C%AE/Evan HTTP/1.1" 200 14233 "http://wiki.linuxsa.org/index.php?limit=50&offset=20240308212019&target=Evan&title=%E7%89%B9%E6%AE%8A:%E7%94%A8%E6%88%B7%E8%B4%A1%E7%8C%AE/Evan" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://opena…”)
  • 2026年4月15日 (三) 14:23 Evan 留言 贡献创建了页面ASG tags (创建页面,内容为“<pre> import boto3 from datetime import datetime autoscaling = boto3.client('autoscaling') # ===== 配置区 ===== ASG_NAMES = [ 'asg-prod-web', 'asg-prod-api', 'asg-canary' ] TAG_KEY = 'DailyTag' TAG_VALUE = datetime.now().strftime('%Y-%m-%d') # PROPAGATE_AT_LAUNCH = True def get_asg_tag(asg_name, key): """获取 ASG 当前 Tag 值""" try: response = autoscaling.describe_auto_scaling_groups( AutoScalingGroupName…”)
  • 2026年4月13日 (一) 07:01 Evan 留言 贡献创建了页面Aws oracle (创建页面,内容为“Amazon RDS for Oracle + Multi-AZ(有 standby instance) <pre> aws rds reboot-db-instance \ --db-instance-identifier mydb \ --force-failover #check AZ aws rds describe-db-instances \ --db-instance-identifier mydb \ --query "DBInstances[0].MultiAZ" </pre>”)
  • 2026年4月1日 (三) 02:02 Evan 留言 贡献创建了页面分类:Ops (创建页面,内容为“ops”)
  • 2026年4月1日 (三) 02:01 Evan 留言 贡献创建了页面分类:Desktop (创建页面,内容为“desktop”)
  • 2026年3月31日 (二) 15:52 Evan 留言 贡献创建了页面Aurora PG13 to PG14 Migration (创建页面,内容为“ =回滚方案= <pre> 能从快照恢复: RDS → 快照 → 选中升级前的快照 恢复为新实例(或覆盖原实例) 恢复后版本回到 PG13 aws cli aws rds restore-db-instance-from-db-snapshot \ --db-instance-identifier YOUR_DB_NAME_RESTORE \ --db-snapshot-identifier before-pg14-upgrade \ --region ap-east-1 </pre>”)
  • 2026年3月23日 (一) 14:12 Evan 留言 贡献创建了页面2026plan (创建页面,内容为“=english= ==write== ==read== book ==spoken english== lesson and vlog =aws= =学历=”)
  • 2026年3月3日 (二) 15:21 Evan 留言 贡献创建了页面Python2026 (创建页面,内容为“<pre> 好的!给你每天都做成详细的 step-by-step 计划。 --- ## Day 1 — 字符串操作(60-90分钟) ### 第一步:看这些操作,每个自己手打一遍(20分钟) ```python s = "Hello World" # 基础操作 print(s[::-1]) # 反转 → "dlroW olleH" print(s.upper()) # 全大写 print(s.lower()) # 全小写 print(s.strip()) # 去首尾空格 print(s.split(" ")) # 分割 → ["Hello", "World"]…”)
  • 2026年3月1日 (日) 09:27 Evan 留言 贡献创建了页面分类:生活与情感 (创建页面,内容为“life”)
  • 2026年3月1日 (日) 05:50 Evan 留言 贡献创建了页面分类:Terraform (创建页面,内容为“Terraform”)
  • 2026年3月1日 (日) 03:47 Evan 留言 贡献创建了页面分类:AWS (创建页面,内容为“Amazon Web Services”)
  • 2026年2月2日 (一) 14:43 Evan 留言 贡献创建了页面分类:ESL (创建页面,内容为“ESL”)
  • 2026年2月2日 (一) 14:41 Evan 留言 贡献创建了页面A Day in the Life of Jeff (创建页面,内容为“category:englishcategory:ESL =1 Getting up = <pre> consult a dictionary [kənˈsʌlt] glossary[ˈɡlɑːsəri] n. 词汇表,术语表;专门词典 semester[sɪˈmestər] n. 学期,半学年 curtains[ˈkɜːtənz]窗帘(curtain的复数) sunlight[ˈsʌnlaɪt] n. 阳光,日光 layers 层 ; 表层 ; 层次 ;/lerz/ fabric[ˈfæbrɪk]n.织物; (建筑物的)结构(如墙、地面、屋顶); 布料; cloth material 布料 [məˈtɪriə…”)
  • 2026年2月2日 (一) 14:30 Evan 留言 贡献创建了页面1 Difficult Customer (创建页面,内容为“=dg= <pre> A: Good evening. My name is Fabio, I’ll be your waiter for tonight. May I take your order? B:No, I’m still working on it. This menu is not even in English. What’s good here? A:For you sir, I would recommend spaghetti [spəˈɡeti] and meatballs. B:Does it come with coke and fries…”)
  • 2026年1月12日 (一) 07:26 Evan 留言 贡献创建了页面Installing Python on Linux (创建页面,内容为“=Compiling from Source= <pre> wget https://www.python.org/ftp/python/3.11.3/Python-3.11.3.tgz 10115 tar xvf Python-3.11.3.tgz 10116 cd Python-3.11.3 10117 hist 10118 history /usr/local/python3.11\n./configure --prefix=/usr/local/python3.11 --enable-optimizations --with-ensurepip=install\n sudo make altinstall # 给 python3.11 创建软链接到 /usr/bin(系统可识别的路径) sudo ln -s /usr/local/python3.11/bin/python3.11 /usr/bin/python3.11 #…”)
  • 2026年1月11日 (日) 13:13 Evan 留言 贡献创建了页面Daily English Dictation (创建页面,内容为“Daily English Dictation 1= =Daily English Dictation 2=”)
  • 2026年1月10日 (六) 05:39 Evan 留言 贡献创建了页面AWS Certification (创建页面,内容为“作为 **AWS Infra DevOps**,认证选择的核心原则是 **匹配日常工作场景+提升核心竞争力**,优先级排序和详细适配分析如下: ### 1. **首选:AWS Certified DevOps Engineer – Professional(DOP-C02)** 这是与 Infra DevOps 岗位**匹配度最高**的认证,没有之一。 - **核心匹配点**: - 考点覆盖 **IaC(CloudFormation/Terraform 实践)、CI/CD 流水线搭建、配置管理(Ansible/S…”)
  • 2025年12月31日 (三) 10:43 Evan 留言 贡献创建了页面Kubernetes Dashboard setup AWS ALB Ingress (创建页面,内容为“=have an EKS cluter= =domain and https= =alb-controller= =setup k8s dashboard= == setup dashboard with https==”)
  • 2025年12月29日 (一) 15:25 Evan 留言 贡献创建了页面分类:EKS (创建页面,内容为“AWS EKS”)
  • 2025年12月29日 (一) 15:18 Evan 留言 贡献移动页面EksEKS Fundamentals,不留重定向
  • 2025年12月29日 (一) 15:10 Evan 留言 贡献创建了页面Eks (创建页面,内容为“ category:k8s category:EKS”)
  • 2025年12月29日 (一) 05:13 Evan 留言 贡献创建了页面138 Renting A Car (创建页面,内容为“<pre> reservation [ˌrezərˈveɪʃ(ə)n] n.预订;预约 vehicle [ˈviɪk(ə)l] n.车辆;工具;交通工具 居然没记起 compact [kəmˈpækt] n.契约;协议;小汽车 紧凑型 SUV…”)
  • 2025年12月24日 (三) 16:10 Evan 留言 贡献创建了页面190 Family Barbecue (创建页面,内容为“<pre> ◉ 190 Family Barbecue 没有主持人文档…”)
  • 2025年12月5日 (五) 15:59 Evan 留言 贡献创建了页面Scp (创建页面,内容为“category:shell =SCP 传输尚未完成,文件却被 mv 提前移动,导致备份不完整。这是典型的竞态条件(race condition)问题,尤其在脚本自动化中很常见= <pre> SCP 是异步写入的,文件在传输过程中就已经出现在目标路径(虽然是 .filepart 或临时名),如果此时你脚本里用了 mv 或 rsync 去“备份”它,就可能拿到一个不完整的文件。 #!/bin/bash REMOTE_USER="user" REMO…”)
  • 2025年12月4日 (四) 15:51 Evan 留言 贡献创建了页面分类:K8s (创建页面,内容为“Kubernetes, also known as K8s, is an open source system for automating deployment, scaling, and management of containerized applications.”)
  • 2025年10月29日 (三) 10:32 Evan 留言 贡献创建了页面Lesson 3 My Family (创建页面,内容为“<pre> *○ Lesson 3 My Family…”)
  • 2025年10月25日 (六) 08:15 Evan 留言 贡献创建了页面Lesson 2 Nice to meet you (创建页面,内容为“<pre> *○ Lesson 2 Nice to meet you…”)
  • 2025年10月22日 (三) 11:10 Evan 留言 贡献创建了页面分类:Base english (创建页面,内容为“base english”)
  • 2025年10月22日 (三) 11:09 Evan 留言 贡献创建了页面Lesson 1 Self Introduction (创建页面,内容为“<pre> ○ lesson 1 Self Introduction…”)
  • 2025年10月16日 (四) 02:20 Evan 留言 贡献创建了页面SQL server Engines Enable Log Exports to S3 (创建页面,内容为“=role= <pre> 如果角色已经存在,只需两步就能把现有角色改成“RDS 可用”: 改信任关系(Trust relationship) IAM → Roles → 选中你的角色 → Trust relationships 标签 → Edit trust policy 把内容替换成下面这段(只保留一条 Statement,Principal 写死 rds.amazonaws.com): { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "Service": "rds.amaz…”)
  • 2025年10月13日 (一) 14:22 Evan 留言 贡献创建了页面Boto3 (创建页面,内容为“=retain days= <pre> import boto3 logs_client = boto3.client('logs', region_name = 'ap-east-1') retention_in_days = 400 # Example: retain logs for 400 days myfile='rdslogs-prod.txt' try: # Read log group names from the file with open(myfile, 'r', encoding='utf-8') as f: target_log_groups = [line.strip() for line in f if line.strip()] except FileNotFoundError: print(f"Error: Cannot find the file '{myfile}'") exit() for log_group_name i…”)
  • 2025年10月9日 (四) 15:48 Evan 留言 贡献创建了页面分类:Linux (创建页面,内容为“linux”)
  • 2025年10月9日 (四) 15:46 Evan 留言 贡献创建了页面Kernel dirty (创建页面,内容为“ “**kernel dirty 配置**” 通常指的是 Linux 内核中与 **页缓存(page cache)写回(writeback)机制** 相关的一系列参数,常见于 **/proc/sys/vm/** 目录下,比如: ``` /proc/sys/vm/dirty_ratio /proc/sys/vm/dirty_background_ratio /proc/sys/vm/dirty_bytes /proc/sys/vm/dirty_background_bytes /proc/sys/vm/dirty_writeback_centisecs /proc/sys/vm/dirty_expire_centisecs ``` 这些参数控制了内核何时、以及如何将脏页…”)
  • 2025年10月7日 (二) 15:27 Evan 留言 贡献创建了页面Efs (创建页面,内容为“== =references= https://docs.aws.amazon.com/zh_cn/efs/latest/ug/whatisefs.html”)
  • 2025年10月6日 (一) 14:55 Evan 留言 贡献创建了页面Mssql (创建页面,内容为“<pre> 步骤 2:设置 CloudWatch 日志订阅过滤器到 S3​​ 现在,你需要让 CloudWatch 自动将收到的日志传输到 S3。 进入 ​​CloudWatch 控制台​​。 在左侧导航栏的 ​​日志​​ 下,点击 ​​日志组​​。 找到并点击你的 RDS 实例对应的日志组,名称类似 /aws/rds/instance/你的实例名称/error。 切换到 ​​订阅过滤器​​ 标签页,然后点击 ​​创建订阅过滤…”)
  • 2025年9月26日 (五) 10:45 Evan 留言 贡献创建了页面Vps空间清理 (创建页面,内容为“ <pre> docker system prune -a --volumes </pre>”)
  • 2025年9月25日 (四) 15:08 Evan 留言 贡献创建了页面172 Dry Cleaners (创建页面,内容为“<pre> A:Thank god you are open! I have an emergency! B:Hello Mr. Henderson what can I do for you?…”)
  • 2025年9月24日 (三) 03:20 Evan 留言 贡献创建了页面重启 ​​AWS PostgreSQL RDS 集群 (创建页面,内容为“<pre> 在左侧导航栏选择 ​​"数据库"​​(Databases)。 找到你的 ​​PostgreSQL 集群​​(Aurora PostgreSQL 或 RDS PostgreSQL)。 ​​选择集群​​(如果是 Aurora,选择 ​​Writer 实例​​)。 点击 ​​"操作"(Actions)​​ > ​​"重启"(Reboot)​​。 选择是否 ​​"强制重启"(Failover)​​(适用于 Aurora,会切换主实例)。 点击 ​​"重启数据库"(Re…”)
  • 2025年9月18日 (四) 15:01 Evan 留言 贡献创建了页面Lesson 1 Greetings (创建页面,内容为“<pre> *○ Lesson 1 Greetings…”)
  • 2025年9月5日 (五) 03:42 Evan 留言 贡献创建了页面Ksh (创建页面,内容为“=intro= The Korn Shell (ksh) is a Unix shell developed by David Korn in the early 1980s at Bell Labs. It was designed to combine the features of the Bourne Shell (sh) and the C Shell (csh), offering enhanced functionality for both interactive use and scripting. It is known for its performance efficiency and advanced scripting capabilities. =task 1= == add new parms== 开始有 7个 最后一个为EXTRA_PARMS_LIST=$7 那我就得 加个$7 ,EXTRA_PARMS_LIST=$8”)
  • 2025年9月5日 (五) 03:36 Evan 留言 贡献创建了页面分类:Shell (创建页面,内容为“Bash is the GNU Project's shell—the Bourne Again SHell. This is an sh-compatible shell that incorporates useful features from the Korn shell (ksh) and the C shell (csh). It is intended to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard. It offers functional improvements over sh for both programming and interactive use. In addition, most sh scripts can be run by Bash without modification.”)
  • 2025年8月17日 (日) 10:01 Evan 留言 贡献创建了页面PostgreSQL向量数据库支持 (创建页面,内容为“=起因 AI so hit = =PostgreSQL= ==PostgreSQL 内置支持== 从 PostgreSQL 16 开始,内置了对向量操作的支持: 新增 vector数据类型 支持基本的向量运算 ==pgvector 扩展== pgvector 是 PostgreSQL 最流行的向量搜索扩展,它允许:”)
  • 2025年8月12日 (二) 14:33 Evan 留言 贡献创建了页面184 Fresh Start (创建页面,内容为“<pre> A: Now that it’s the new year, I’ve decided to turn over a new leaf. B: Yeah? You finally decided to wipe the slate clean?…”)
  • 2025年7月6日 (日) 03:44 Evan 留言 贡献创建了页面Casio (创建页面,内容为“[https://www.bilibili.com/video/BV1A1421z7nm/?spm%20id%20from=333.337.search-card.all.click&vd%20source=e3e41ea2b1d70e0e3a6a0372ee88d714 卡西欧GA110 5146手表调整时间和日历教程,指针时间和数显不匹配,指针时间不准问题解决]”)
  • 2025年7月3日 (四) 14:32 Evan 留言 贡献创建了页面89 At The Airport (创建页面,内容为“category:englishpod <pre> A:Next please! Hello sir, may I see your passport please? B:Yes, here you go.…”)
最新 | 最旧) 查看(较新50条 | )(20 | 50 | 100 | 250 | 500