- Backfill `created` frontmatter on 266 active notes (git date or mtime) - Normalize `status` to 4 values: draft/active/done/archived (11 notes) - Active/进行中/needs-review → active - archive → archived - 待执行/conditional → draft - 完成/accepted → done - Declare clipper boundary: 04_Archive/Inbox-Clippings/** exempt from migration - Update depth rule: max 3 → max 4 levels (new notes only) - Add metadata-converge.mjs script for reproducibility
35 lines
565 B
Markdown
35 lines
565 B
Markdown
---
|
|
created: 2026-01-05
|
|
---
|
|
|
|
|
|
install:
|
|
|
|
```bash
|
|
|
|
sudo ipa-server-install --domain=int.it2000.com.cn \
|
|
--ds-password=admingzzn \
|
|
--admin-password=admingzzn \
|
|
--hostname=ipa.int.it2000.com.cn \
|
|
--ip-address=10.100.100.2 \
|
|
--setup-dns
|
|
```
|
|
|
|
|
|
coolpit ssl:
|
|
|
|
```bash
|
|
ipa-getcert request -f /etc/cockpit/ws-certs.d/$(hostname -f).cert -k /etc/cockpit/ws-certs.d/$(hostname -f).key -D $(hostname -f) -K host/$(hostname -f) -m 0640 -o root:cockpit-ws -O root:root -M 0644
|
|
```
|
|
|
|
|
|
```bash
|
|
ipa-getcert list
|
|
```
|
|
|
|
|
|
change user password:
|
|
```bash
|
|
ipa user-mod (user) --password
|
|
```
|