hard reset
This commit is contained in:
156
etc/nginx/sites-available/reverse-proxy.conf
Normal file
156
etc/nginx/sites-available/reverse-proxy.conf
Normal file
@@ -0,0 +1,156 @@
|
|||||||
|
# -----------------------------
|
||||||
|
# Proxmox (nur via VPN)
|
||||||
|
# -----------------------------
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name proxmox.cutemeli.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/ssl/certs/proxmox.pem;
|
||||||
|
ssl_certificate_key /etc/ssl/private/proxmox.key;
|
||||||
|
|
||||||
|
allow 127.0.0.1;
|
||||||
|
allow 10.10.0.0/24;
|
||||||
|
allow 172.17.0.0/16;
|
||||||
|
allow 172.18.0.0/16;
|
||||||
|
allow 172.19.0.0/16;
|
||||||
|
deny all;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass https://127.0.0.1:8006;
|
||||||
|
proxy_ssl_verify off;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
# -----------------------------
|
||||||
|
# Git
|
||||||
|
# -----------------------------
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name git.cutemeli.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/ssl/certs/git.pem;
|
||||||
|
ssl_certificate_key /etc/ssl/private/git.key;
|
||||||
|
|
||||||
|
#allow 10.10.0.0/24;
|
||||||
|
#allow 127.0.0.1;
|
||||||
|
#deny all;
|
||||||
|
|
||||||
|
client_max_body_size 5g;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://127.0.0.1:3001;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto https;
|
||||||
|
|
||||||
|
proxy_read_timeout 3600;
|
||||||
|
proxy_redirect off;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# -----------------------------
|
||||||
|
# Nextcloud
|
||||||
|
# -----------------------------
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name share.cutemeli.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/ssl/certs/share.pem;
|
||||||
|
ssl_certificate_key /etc/ssl/private/share.key;
|
||||||
|
|
||||||
|
client_max_body_size 2G;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://127.0.0.1:8080;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto https;
|
||||||
|
|
||||||
|
proxy_read_timeout 3600;
|
||||||
|
proxy_redirect off;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Pflicht für DAV / Kalender / Kontakte
|
||||||
|
location = /.well-known/carddav {
|
||||||
|
return 301 /remote.php/dav;
|
||||||
|
}
|
||||||
|
location = /.well-known/caldav {
|
||||||
|
return 301 /remote.php/dav;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Optional für Federation, Talk, etc.
|
||||||
|
location ^~ /.well-known {
|
||||||
|
proxy_pass http://127.0.0.1:8080;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# -----------------------------
|
||||||
|
# Monitoring (nur via VPN)
|
||||||
|
# -----------------------------
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name monitor.cutemeli.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/ssl/certs/monitor.pem;
|
||||||
|
ssl_certificate_key /etc/ssl/private/monitor.key;
|
||||||
|
|
||||||
|
allow 10.10.0.0/24;
|
||||||
|
allow 127.0.0.1;
|
||||||
|
deny all;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://127.0.0.1:8082;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto https;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
# -----------------------------
|
||||||
|
# Vaultwarden
|
||||||
|
# -----------------------------
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name vault.cutemeli.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/ssl/certs/vault.pem;
|
||||||
|
ssl_certificate_key /etc/ssl/private/vault.key;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://127.0.0.1:8081;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto https;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Für WebSocket Sync mit Browser Extensions
|
||||||
|
location /notifications/hub {
|
||||||
|
proxy_pass http://127.0.0.1:8081;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
}
|
||||||
|
|
||||||
|
location /notifications/hub/negotiate {
|
||||||
|
proxy_pass http://127.0.0.1:8081;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# -----------------------------
|
||||||
|
# Redirect HTTP -> HTTPS
|
||||||
|
# -----------------------------
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name git.cutemeli.com proxmox.cutemeli.com share.cutemeli.com monitor.cutemeli.com prometheus.cutemeli.com vault.cutemeli.com vpn.cutemeli.com;
|
||||||
|
return 301 https://$host$request_uri;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
16
etc/systemd/system/gitea.service
Normal file
16
etc/systemd/system/gitea.service
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Gitea (Docker Compose)
|
||||||
|
Requires=docker.service
|
||||||
|
After=docker.service network-online.target
|
||||||
|
Wants=network-online.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
WorkingDirectory=/opt/gitea
|
||||||
|
ExecStart=/usr/bin/docker compose up -d
|
||||||
|
ExecStop=/usr/bin/docker compose down
|
||||||
|
RemainAfterExit=yes
|
||||||
|
TimeoutStartSec=0
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
15
etc/systemd/system/monitoring.service
Normal file
15
etc/systemd/system/monitoring.service
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Monitoring Stack (Icinga)
|
||||||
|
Requires=docker.service
|
||||||
|
After=docker.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
WorkingDirectory=/opt/monitoring
|
||||||
|
RemainAfterExit=yes
|
||||||
|
ExecStart=/usr/bin/docker compose up -d
|
||||||
|
ExecStop=/usr/bin/docker compose down
|
||||||
|
TimeoutStartSec=0
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
15
etc/systemd/system/nextcloud.service
Normal file
15
etc/systemd/system/nextcloud.service
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Nextcloud Docker Compose Service
|
||||||
|
Requires=docker.service
|
||||||
|
After=docker.service network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
RemainAfterExit=yes
|
||||||
|
WorkingDirectory=/opt/nextcloud
|
||||||
|
ExecStart=/usr/bin/docker compose up -d
|
||||||
|
ExecStop=/usr/bin/docker compose down
|
||||||
|
ExecReload=/usr/bin/docker compose restart
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
21
etc/systemd/system/proxmox-vm.service
Normal file
21
etc/systemd/system/proxmox-vm.service
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Proxmox VM (QEMU)
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
ExecStart=/usr/bin/qemu-system-x86_64 \
|
||||||
|
-enable-kvm \
|
||||||
|
-cpu host \
|
||||||
|
-m 4096 \
|
||||||
|
-smp 4 \
|
||||||
|
-drive file=/root/proxmox-disk.qcow2,format=qcow2 \
|
||||||
|
-boot order=c \
|
||||||
|
-nographic \
|
||||||
|
-netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::8006-:8006 \
|
||||||
|
-device virtio-net-pci,netdev=net0
|
||||||
|
Restart=always
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
|
||||||
15
etc/systemd/system/vaultwarden.service
Normal file
15
etc/systemd/system/vaultwarden.service
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Vaultwarden (Bitwarden in Rust)
|
||||||
|
After=docker.service
|
||||||
|
Requires=docker.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
RemainAfterExit=yes
|
||||||
|
WorkingDirectory=/opt/vaultwarden
|
||||||
|
ExecStart=/usr/bin/docker compose up -d
|
||||||
|
ExecStop=/usr/bin/docker compose down
|
||||||
|
TimeoutStartSec=0
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
0
opt/gitea/data/git/.ssh/authorized_keys
Normal file
0
opt/gitea/data/git/.ssh/authorized_keys
Normal file
1
opt/gitea/data/git/.ssh/environment
Normal file
1
opt/gitea/data/git/.ssh/environment
Normal file
@@ -0,0 +1 @@
|
|||||||
|
GITEA_CUSTOM=/data/gitea
|
||||||
BIN
opt/gitea/data/gitea/avatars/8bdf37669889a5f09e05445d1e6352e6
Normal file
BIN
opt/gitea/data/gitea/avatars/8bdf37669889a5f09e05445d1e6352e6
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
103
opt/gitea/data/gitea/conf/app.ini
Normal file
103
opt/gitea/data/gitea/conf/app.ini
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
APP_NAME = Gitea: Git with a cup of tea
|
||||||
|
RUN_MODE = prod
|
||||||
|
RUN_USER = git
|
||||||
|
WORK_PATH = /data/gitea
|
||||||
|
|
||||||
|
[repository]
|
||||||
|
ROOT = /data/git/repositories
|
||||||
|
|
||||||
|
[repository.local]
|
||||||
|
LOCAL_COPY_PATH = /data/gitea/tmp/local-repo
|
||||||
|
|
||||||
|
[repository.upload]
|
||||||
|
TEMP_PATH = /data/gitea/uploads
|
||||||
|
|
||||||
|
[server]
|
||||||
|
APP_DATA_PATH = /data/gitea
|
||||||
|
DOMAIN = git.cutemeli.com
|
||||||
|
SSH_DOMAIN = git.cutemeli.com
|
||||||
|
HTTP_PORT = 3000
|
||||||
|
ROOT_URL = https://git.cutemeli.com/
|
||||||
|
DISABLE_SSH = false
|
||||||
|
SSH_PORT = 2223
|
||||||
|
SSH_LISTEN_PORT = 22
|
||||||
|
LFS_START_SERVER = true
|
||||||
|
LFS_JWT_SECRET = cOU_3uaJeLJtRLPqH7BgZiF3fEu7W8ldUkMf_B0SIbQ
|
||||||
|
OFFLINE_MODE = true
|
||||||
|
|
||||||
|
[database]
|
||||||
|
PATH = /data/gitea/gitea.db
|
||||||
|
DB_TYPE = postgres
|
||||||
|
HOST = db:5432
|
||||||
|
NAME = gitea
|
||||||
|
USER = gitea
|
||||||
|
PASSWD = oC^Kg66uG%^8aZ6KfSJM
|
||||||
|
LOG_SQL = false
|
||||||
|
SCHEMA =
|
||||||
|
SSL_MODE = disable
|
||||||
|
|
||||||
|
[indexer]
|
||||||
|
ISSUE_INDEXER_PATH = /data/gitea/indexers/issues.bleve
|
||||||
|
|
||||||
|
[session]
|
||||||
|
PROVIDER_CONFIG = /data/gitea/sessions
|
||||||
|
PROVIDER = file
|
||||||
|
|
||||||
|
[picture]
|
||||||
|
AVATAR_UPLOAD_PATH = /data/gitea/avatars
|
||||||
|
REPOSITORY_AVATAR_UPLOAD_PATH = /data/gitea/repo-avatars
|
||||||
|
|
||||||
|
[attachment]
|
||||||
|
PATH = /data/gitea/attachments
|
||||||
|
|
||||||
|
[log]
|
||||||
|
MODE = console
|
||||||
|
LEVEL = info
|
||||||
|
ROOT_PATH = /data/gitea/log
|
||||||
|
|
||||||
|
[security]
|
||||||
|
INSTALL_LOCK = true
|
||||||
|
SECRET_KEY =
|
||||||
|
REVERSE_PROXY_LIMIT = 1
|
||||||
|
REVERSE_PROXY_TRUSTED_PROXIES = *
|
||||||
|
INTERNAL_TOKEN = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE3NjU5OTUxNzF9.o8MfDY7cB8Oav7DN4iUV8sZXg0vxbTShc8m0uqSCO3U
|
||||||
|
PASSWORD_HASH_ALGO = pbkdf2
|
||||||
|
|
||||||
|
[service]
|
||||||
|
DISABLE_REGISTRATION = false
|
||||||
|
REQUIRE_SIGNIN_VIEW = false
|
||||||
|
REGISTER_EMAIL_CONFIRM = true
|
||||||
|
ENABLE_NOTIFY_MAIL = true
|
||||||
|
ALLOW_ONLY_EXTERNAL_REGISTRATION = false
|
||||||
|
ENABLE_CAPTCHA = false
|
||||||
|
DEFAULT_KEEP_EMAIL_PRIVATE = false
|
||||||
|
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
|
||||||
|
DEFAULT_ENABLE_TIMETRACKING = true
|
||||||
|
NO_REPLY_ADDRESS = noreply.git.cutemeli.com
|
||||||
|
|
||||||
|
[lfs]
|
||||||
|
PATH = /data/git/lfs
|
||||||
|
|
||||||
|
[mailer]
|
||||||
|
ENABLED = true
|
||||||
|
SMTP_ADDR = smtp.strato.de
|
||||||
|
SMTP_PORT =
|
||||||
|
FROM = "Gitea" <noreply@cutemeli.de>
|
||||||
|
USER = noreply@cutemeli.de
|
||||||
|
PASSWD = `dkbx2T$x5HoarW#2EHd4`
|
||||||
|
|
||||||
|
[openid]
|
||||||
|
ENABLE_OPENID_SIGNIN = true
|
||||||
|
ENABLE_OPENID_SIGNUP = true
|
||||||
|
|
||||||
|
[cron.update_checker]
|
||||||
|
ENABLED = false
|
||||||
|
|
||||||
|
[repository.pull-request]
|
||||||
|
DEFAULT_MERGE_STYLE = merge
|
||||||
|
|
||||||
|
[repository.signing]
|
||||||
|
DEFAULT_TRUST_MODEL = committer
|
||||||
|
|
||||||
|
[oauth2]
|
||||||
|
JWT_SECRET = ZcRne-Hfsqs39RoGZM29ozgQr7U4pBi_o2LjqED8Xas
|
||||||
22
opt/gitea/data/gitea/home/.gitconfig
Normal file
22
opt/gitea/data/gitea/home/.gitconfig
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
[core]
|
||||||
|
logallrefupdates = true
|
||||||
|
quotePath = false
|
||||||
|
commitGraph = true
|
||||||
|
[gc]
|
||||||
|
reflogexpire = 90
|
||||||
|
writeCommitGraph = true
|
||||||
|
[diff]
|
||||||
|
algorithm = histogram
|
||||||
|
[user]
|
||||||
|
name = Gitea
|
||||||
|
email = gitea@fake.local
|
||||||
|
[receive]
|
||||||
|
advertisePushOptions = true
|
||||||
|
procReceiveRefs = refs/for
|
||||||
|
[fetch]
|
||||||
|
writeCommitGraph = true
|
||||||
|
[safe]
|
||||||
|
directory = *
|
||||||
|
[uploadpack]
|
||||||
|
allowfilter = true
|
||||||
|
allowAnySHA1InWant = true
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"storage":"boltdb","index_type":"scorch"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"version":5}
|
||||||
BIN
opt/gitea/data/gitea/indexers/issues.bleve/store/root.bolt
Normal file
BIN
opt/gitea/data/gitea/indexers/issues.bleve/store/root.bolt
Normal file
Binary file not shown.
52
opt/gitea/data/gitea/jwt/private.pem
Normal file
52
opt/gitea/data/gitea/jwt/private.pem
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
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
|
||||||
|
votE2GnchuLiBAK+Q4XEgKqQAd6yIA==
|
||||||
|
-----END PRIVATE KEY-----
|
||||||
BIN
opt/gitea/data/gitea/queues/common/000002.ldb
Normal file
BIN
opt/gitea/data/gitea/queues/common/000002.ldb
Normal file
Binary file not shown.
0
opt/gitea/data/gitea/queues/common/000069.log
Normal file
0
opt/gitea/data/gitea/queues/common/000069.log
Normal file
1
opt/gitea/data/gitea/queues/common/CURRENT
Normal file
1
opt/gitea/data/gitea/queues/common/CURRENT
Normal file
@@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000070
|
||||||
1
opt/gitea/data/gitea/queues/common/CURRENT.bak
Normal file
1
opt/gitea/data/gitea/queues/common/CURRENT.bak
Normal file
@@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000068
|
||||||
0
opt/gitea/data/gitea/queues/common/LOCK
Normal file
0
opt/gitea/data/gitea/queues/common/LOCK
Normal file
313
opt/gitea/data/gitea/queues/common/LOG
Normal file
313
opt/gitea/data/gitea/queues/common/LOG
Normal file
@@ -0,0 +1,313 @@
|
|||||||
|
=============== Dec 17, 2025 (UTC) ===============
|
||||||
|
18:12:55.490449 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
18:12:55.491711 db@open opening
|
||||||
|
18:12:55.492252 version@stat F·[] S·0B[] Sc·[]
|
||||||
|
18:12:55.494685 db@janitor F·2 G·0
|
||||||
|
18:12:55.494705 db@open done T·2.97934ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:07:23.658066 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:07:23.658284 version@stat F·[] S·0B[] Sc·[]
|
||||||
|
09:07:23.658297 db@open opening
|
||||||
|
09:07:23.658352 journal@recovery F·1
|
||||||
|
09:07:23.658445 journal@recovery recovering @1
|
||||||
|
09:07:23.659250 memdb@flush created L0@2 N·30 S·601B "act..igh,v30":"web..low,v21"
|
||||||
|
09:07:23.659431 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:07:23.661156 db@janitor F·3 G·0
|
||||||
|
09:07:23.661206 db@open done T·2.892361ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:07:51.247447 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:07:51.247626 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:07:51.247633 db@open opening
|
||||||
|
09:07:51.247659 journal@recovery F·1
|
||||||
|
09:07:51.247722 journal@recovery recovering @3
|
||||||
|
09:07:51.247838 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:07:51.249421 db@janitor F·3 G·0
|
||||||
|
09:07:51.249443 db@open done T·1.801781ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:08:18.870890 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:08:18.871068 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:08:18.871074 db@open opening
|
||||||
|
09:08:18.871104 journal@recovery F·1
|
||||||
|
09:08:18.871169 journal@recovery recovering @5
|
||||||
|
09:08:18.871288 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:08:18.872795 db@janitor F·3 G·0
|
||||||
|
09:08:18.872816 db@open done T·1.734028ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:08:46.471906 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:08:46.472084 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:08:46.472091 db@open opening
|
||||||
|
09:08:46.472118 journal@recovery F·1
|
||||||
|
09:08:46.472188 journal@recovery recovering @7
|
||||||
|
09:08:46.472295 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:08:46.474502 db@janitor F·3 G·0
|
||||||
|
09:08:46.474538 db@open done T·2.435994ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:09:14.092338 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:09:14.092577 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:09:14.092589 db@open opening
|
||||||
|
09:09:14.092634 journal@recovery F·1
|
||||||
|
09:09:14.092720 journal@recovery recovering @9
|
||||||
|
09:09:14.093031 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:09:14.096639 db@janitor F·3 G·0
|
||||||
|
09:09:14.096666 db@open done T·4.06703ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:09:41.780838 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:09:41.781045 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:09:41.781056 db@open opening
|
||||||
|
09:09:41.781092 journal@recovery F·1
|
||||||
|
09:09:41.781152 journal@recovery recovering @11
|
||||||
|
09:09:41.781372 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:09:41.783241 db@janitor F·3 G·0
|
||||||
|
09:09:41.783273 db@open done T·2.191448ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:10:09.463067 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:10:09.463229 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:10:09.463236 db@open opening
|
||||||
|
09:10:09.463262 journal@recovery F·1
|
||||||
|
09:10:09.463332 journal@recovery recovering @13
|
||||||
|
09:10:09.463435 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:10:09.465413 db@janitor F·3 G·0
|
||||||
|
09:10:09.465434 db@open done T·2.190636ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:10:37.108214 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:10:37.108428 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:10:37.108434 db@open opening
|
||||||
|
09:10:37.108459 journal@recovery F·1
|
||||||
|
09:10:37.108543 journal@recovery recovering @15
|
||||||
|
09:10:37.108673 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:10:37.112245 db@janitor F·3 G·0
|
||||||
|
09:10:37.112273 db@open done T·3.831865ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:11:04.764770 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:11:04.764978 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:11:04.764987 db@open opening
|
||||||
|
09:11:04.765019 journal@recovery F·1
|
||||||
|
09:11:04.766429 journal@recovery recovering @17
|
||||||
|
09:11:04.766835 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:11:04.769074 db@janitor F·3 G·0
|
||||||
|
09:11:04.769118 db@open done T·4.116837ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:11:32.411086 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:11:32.411319 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:11:32.411329 db@open opening
|
||||||
|
09:11:32.411364 journal@recovery F·1
|
||||||
|
09:11:32.411452 journal@recovery recovering @19
|
||||||
|
09:11:32.411852 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:11:32.415920 db@janitor F·3 G·0
|
||||||
|
09:11:32.415946 db@open done T·4.607683ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:12:00.024294 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:12:00.024492 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:12:00.024510 db@open opening
|
||||||
|
09:12:00.024559 journal@recovery F·1
|
||||||
|
09:12:00.024645 journal@recovery recovering @21
|
||||||
|
09:12:00.024829 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:12:00.027442 db@janitor F·3 G·0
|
||||||
|
09:12:00.027497 db@open done T·2.969467ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:12:27.663441 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:12:27.663674 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:12:27.663683 db@open opening
|
||||||
|
09:12:27.663714 journal@recovery F·1
|
||||||
|
09:12:27.663924 journal@recovery recovering @23
|
||||||
|
09:12:27.666223 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:12:27.668523 db@janitor F·3 G·0
|
||||||
|
09:12:27.668550 db@open done T·4.856506ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:12:55.303781 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:12:55.303999 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:12:55.304010 db@open opening
|
||||||
|
09:12:55.304047 journal@recovery F·1
|
||||||
|
09:12:55.304135 journal@recovery recovering @25
|
||||||
|
09:12:55.304318 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:12:55.306110 db@janitor F·3 G·0
|
||||||
|
09:12:55.306132 db@open done T·2.113229ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:13:22.939511 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:13:22.939719 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:13:22.939728 db@open opening
|
||||||
|
09:13:22.939757 journal@recovery F·1
|
||||||
|
09:13:22.939831 journal@recovery recovering @27
|
||||||
|
09:13:22.939942 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:13:22.941946 db@janitor F·3 G·0
|
||||||
|
09:13:22.941984 db@open done T·2.242116ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:13:50.561119 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:13:50.561306 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:13:50.561313 db@open opening
|
||||||
|
09:13:50.561339 journal@recovery F·1
|
||||||
|
09:13:50.561529 journal@recovery recovering @29
|
||||||
|
09:13:50.564309 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:13:50.566314 db@janitor F·3 G·0
|
||||||
|
09:13:50.566337 db@open done T·5.016356ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:14:18.209435 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:14:18.209693 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:14:18.209700 db@open opening
|
||||||
|
09:14:18.209748 journal@recovery F·1
|
||||||
|
09:14:18.210014 journal@recovery recovering @31
|
||||||
|
09:14:18.212762 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:14:18.214574 db@janitor F·3 G·0
|
||||||
|
09:14:18.214596 db@open done T·4.887689ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:14:45.824784 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:14:45.824969 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:14:45.824976 db@open opening
|
||||||
|
09:14:45.825000 journal@recovery F·1
|
||||||
|
09:14:45.825184 journal@recovery recovering @33
|
||||||
|
09:14:45.827582 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:14:45.829596 db@janitor F·3 G·0
|
||||||
|
09:14:45.829625 db@open done T·4.639527ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:15:13.436804 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:15:13.436975 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:15:13.436982 db@open opening
|
||||||
|
09:15:13.437007 journal@recovery F·1
|
||||||
|
09:15:13.437183 journal@recovery recovering @35
|
||||||
|
09:15:13.439395 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:15:13.441365 db@janitor F·3 G·0
|
||||||
|
09:15:13.441389 db@open done T·4.399026ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:15:41.124617 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:15:41.124894 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:15:41.124911 db@open opening
|
||||||
|
09:15:41.124981 journal@recovery F·1
|
||||||
|
09:15:41.125088 journal@recovery recovering @37
|
||||||
|
09:15:41.125296 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:15:41.127352 db@janitor F·3 G·0
|
||||||
|
09:15:41.127376 db@open done T·2.451334ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:16:08.743179 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:16:08.743348 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:16:08.743355 db@open opening
|
||||||
|
09:16:08.743382 journal@recovery F·1
|
||||||
|
09:16:08.743453 journal@recovery recovering @39
|
||||||
|
09:16:08.743632 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:16:08.745324 db@janitor F·3 G·0
|
||||||
|
09:16:08.745346 db@open done T·1.982339ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:16:36.406623 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:16:36.406836 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:16:36.406846 db@open opening
|
||||||
|
09:16:36.406877 journal@recovery F·1
|
||||||
|
09:16:36.407072 journal@recovery recovering @41
|
||||||
|
09:16:36.409986 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:16:36.412138 db@janitor F·3 G·0
|
||||||
|
09:16:36.412164 db@open done T·5.309199ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:17:04.028746 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:17:04.028953 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:17:04.028964 db@open opening
|
||||||
|
09:17:04.028995 journal@recovery F·1
|
||||||
|
09:17:04.029050 journal@recovery recovering @43
|
||||||
|
09:17:04.029256 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:17:04.033165 db@janitor F·3 G·0
|
||||||
|
09:17:04.033188 db@open done T·4.215514ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:17:31.641729 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:17:31.641920 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:17:31.641927 db@open opening
|
||||||
|
09:17:31.641954 journal@recovery F·1
|
||||||
|
09:17:31.642121 journal@recovery recovering @45
|
||||||
|
09:17:31.644405 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:17:31.646563 db@janitor F·3 G·0
|
||||||
|
09:17:31.646586 db@open done T·4.650613ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:17:59.314453 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:17:59.314679 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:17:59.314687 db@open opening
|
||||||
|
09:17:59.314714 journal@recovery F·1
|
||||||
|
09:17:59.316545 journal@recovery recovering @47
|
||||||
|
09:17:59.316708 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:17:59.318434 db@janitor F·3 G·0
|
||||||
|
09:17:59.318457 db@open done T·3.761818ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:18:26.959100 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:18:26.959271 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:18:26.959277 db@open opening
|
||||||
|
09:18:26.959305 journal@recovery F·1
|
||||||
|
09:18:26.959374 journal@recovery recovering @49
|
||||||
|
09:18:26.959546 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:18:26.961318 db@janitor F·3 G·0
|
||||||
|
09:18:26.961344 db@open done T·2.057573ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:18:54.568816 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:18:54.569042 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:18:54.569050 db@open opening
|
||||||
|
09:18:54.569077 journal@recovery F·1
|
||||||
|
09:18:54.569134 journal@recovery recovering @51
|
||||||
|
09:18:54.569255 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:18:54.571291 db@janitor F·3 G·0
|
||||||
|
09:18:54.571317 db@open done T·2.257868ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:19:22.211807 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:19:22.211981 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:19:22.211988 db@open opening
|
||||||
|
09:19:22.212013 journal@recovery F·1
|
||||||
|
09:19:22.212091 journal@recovery recovering @53
|
||||||
|
09:19:22.212418 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:19:22.214537 db@janitor F·3 G·0
|
||||||
|
09:19:22.214552 db@open done T·2.557ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:19:49.840574 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:19:49.840736 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:19:49.840742 db@open opening
|
||||||
|
09:19:49.840769 journal@recovery F·1
|
||||||
|
09:19:49.840844 journal@recovery recovering @55
|
||||||
|
09:19:49.841061 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:19:49.843138 db@janitor F·3 G·0
|
||||||
|
09:19:49.843155 db@open done T·2.404831ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:20:17.480209 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:20:17.480380 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:20:17.480387 db@open opening
|
||||||
|
09:20:17.480414 journal@recovery F·1
|
||||||
|
09:20:17.480520 journal@recovery recovering @57
|
||||||
|
09:20:17.480654 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:20:17.482645 db@janitor F·3 G·0
|
||||||
|
09:20:17.482675 db@open done T·2.279598ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:20:45.127615 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:20:45.127810 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:20:45.127819 db@open opening
|
||||||
|
09:20:45.127846 journal@recovery F·1
|
||||||
|
09:20:45.128012 journal@recovery recovering @59
|
||||||
|
09:20:45.130378 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:20:45.132505 db@janitor F·3 G·0
|
||||||
|
09:20:45.132537 db@open done T·4.708264ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:21:12.756553 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:21:12.756727 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:21:12.756733 db@open opening
|
||||||
|
09:21:12.756760 journal@recovery F·1
|
||||||
|
09:21:12.756948 journal@recovery recovering @61
|
||||||
|
09:21:12.759677 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:21:12.761551 db@janitor F·3 G·0
|
||||||
|
09:21:12.761585 db@open done T·4.84246ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:21:40.392543 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:21:40.392710 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:21:40.392717 db@open opening
|
||||||
|
09:21:40.392742 journal@recovery F·1
|
||||||
|
09:21:40.392816 journal@recovery recovering @63
|
||||||
|
09:21:40.392924 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:21:40.394659 db@janitor F·3 G·0
|
||||||
|
09:21:40.394684 db@open done T·1.959342ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:22:37.652204 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:22:37.652632 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:22:37.652643 db@open opening
|
||||||
|
09:22:37.652675 journal@recovery F·1
|
||||||
|
09:22:37.652733 journal@recovery recovering @65
|
||||||
|
09:22:37.652992 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:22:37.656577 db@janitor F·3 G·0
|
||||||
|
09:22:37.656633 db@open done T·3.978906ms
|
||||||
|
=============== Dec 22, 2025 (UTC) ===============
|
||||||
|
09:23:05.626895 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
|
||||||
|
09:23:05.627058 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:23:05.627064 db@open opening
|
||||||
|
09:23:05.627091 journal@recovery F·1
|
||||||
|
09:23:05.627147 journal@recovery recovering @67
|
||||||
|
09:23:05.627345 version@stat F·[1] S·601B[601B] Sc·[0.25]
|
||||||
|
09:23:05.628920 db@janitor F·3 G·0
|
||||||
|
09:23:05.628936 db@open done T·1.86455ms
|
||||||
BIN
opt/gitea/data/gitea/queues/common/MANIFEST-000070
Normal file
BIN
opt/gitea/data/gitea/queues/common/MANIFEST-000070
Normal file
Binary file not shown.
BIN
opt/gitea/data/gitea/sessions/3/8/387a8710db22caeb
Normal file
BIN
opt/gitea/data/gitea/sessions/3/8/387a8710db22caeb
Normal file
Binary file not shown.
BIN
opt/gitea/data/gitea/sessions/4/8/4861f04cb6dd4788
Normal file
BIN
opt/gitea/data/gitea/sessions/4/8/4861f04cb6dd4788
Normal file
Binary file not shown.
9
opt/gitea/data/ssh/ssh_host_ecdsa_key
Normal file
9
opt/gitea/data/ssh/ssh_host_ecdsa_key
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||||
|
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAaAAAABNlY2RzYS
|
||||||
|
1zaGEyLW5pc3RwMjU2AAAACG5pc3RwMjU2AAAAQQTix3ojGbIPRh0qOT3guX2qBwhLxUll
|
||||||
|
xkF+wxuNRb+TI0ic/ONsQZKOX0bGWaBvPu6/WNT5xco++AOMwNwtwkj3AAAAsCui678rou
|
||||||
|
u/AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOLHeiMZsg9GHSo5
|
||||||
|
PeC5faoHCEvFSWXGQX7DG41Fv5MjSJz842xBko5fRsZZoG8+7r9Y1PnFyj74A4zA3C3CSP
|
||||||
|
cAAAAhAI8kVJlvO9BjS5QAYJ7CIvC7xR9GGCZfvRB0auSvuuxmAAAAEXJvb3RAZmY1NDky
|
||||||
|
NzZlN2QwAQIDBAUG
|
||||||
|
-----END OPENSSH PRIVATE KEY-----
|
||||||
1
opt/gitea/data/ssh/ssh_host_ecdsa_key.pub
Normal file
1
opt/gitea/data/ssh/ssh_host_ecdsa_key.pub
Normal file
@@ -0,0 +1 @@
|
|||||||
|
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOLHeiMZsg9GHSo5PeC5faoHCEvFSWXGQX7DG41Fv5MjSJz842xBko5fRsZZoG8+7r9Y1PnFyj74A4zA3C3CSPc= root@ff549276e7d0
|
||||||
7
opt/gitea/data/ssh/ssh_host_ed25519_key
Normal file
7
opt/gitea/data/ssh/ssh_host_ed25519_key
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||||
|
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW
|
||||||
|
QyNTUxOQAAACA9g2mFRhzbWslMpVapDkHbA6W4G8o/GFm6wWUgtzfl+QAAAJgEKe9tBCnv
|
||||||
|
bQAAAAtzc2gtZWQyNTUxOQAAACA9g2mFRhzbWslMpVapDkHbA6W4G8o/GFm6wWUgtzfl+Q
|
||||||
|
AAAECfPyGHB8X84uQ6B7YUXBjU2L6K9zLvKBGgu0N1q646Gz2DaYVGHNtayUylVqkOQdsD
|
||||||
|
pbgbyj8YWbrBZSC3N+X5AAAAEXJvb3RAZmY1NDkyNzZlN2QwAQIDBA==
|
||||||
|
-----END OPENSSH PRIVATE KEY-----
|
||||||
1
opt/gitea/data/ssh/ssh_host_ed25519_key.pub
Normal file
1
opt/gitea/data/ssh/ssh_host_ed25519_key.pub
Normal file
@@ -0,0 +1 @@
|
|||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID2DaYVGHNtayUylVqkOQdsDpbgbyj8YWbrBZSC3N+X5 root@ff549276e7d0
|
||||||
38
opt/gitea/data/ssh/ssh_host_rsa_key
Normal file
38
opt/gitea/data/ssh/ssh_host_rsa_key
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||||
|
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
|
||||||
|
-----END OPENSSH PRIVATE KEY-----
|
||||||
1
opt/gitea/data/ssh/ssh_host_rsa_key.pub
Normal file
1
opt/gitea/data/ssh/ssh_host_rsa_key.pub
Normal file
@@ -0,0 +1 @@
|
|||||||
|
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCxPaU+kK3x5pDTzGc6NaX1/Y3oOPEKLkdPcJFFn0mMSdxRWQItnUNMnfD6+kaqQkG2SsorYxnBb07pdK61KZ61EvO2ZwH1Xe0CwFbtkh0ah5ZI+ob/72/SSdCJcUmS8unsTapVT5vpNL3N2RC1QCXsit/hwbSRkxHhkzkHnw1ME5onk+MITLQOh47ve2bElNGaKhR9bTX7XLR9tlIABqhRNHg8L4qxr5uNDXS4+FpPMrQSPUc9C8JlZQa8EGhC63NG6vzdEgA7GHeqOmILwvrBFFs0Mw1eF+VCLpVcAdDr9pXdmTS16Yc0+di0e6scq8S8NKHsBT9dm5wukrGebOXZMpuL4oUjw7E2dmxRSoCDECz7+/o4muGoM7ISB6HLnR6xAcI3INfuKjens4/bYelsiuZEwZ1sYpbLO8UJh6Hc6Hhd8Pmg1NOevia7gtp+fYo6RYoBWDc+TgvV/uIqw1g8sY0tYgdrJkpIXb+4XYbFVsQIFDyUsYccx1Gnju3EbBk= root@ff549276e7d0
|
||||||
1
opt/gitea/db/PG_VERSION
Normal file
1
opt/gitea/db/PG_VERSION
Normal file
@@ -0,0 +1 @@
|
|||||||
|
16
|
||||||
BIN
opt/gitea/db/base/1/112
Normal file
BIN
opt/gitea/db/base/1/112
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/113
Normal file
BIN
opt/gitea/db/base/1/113
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1247
Normal file
BIN
opt/gitea/db/base/1/1247
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1247_fsm
Normal file
BIN
opt/gitea/db/base/1/1247_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1247_vm
Normal file
BIN
opt/gitea/db/base/1/1247_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1249
Normal file
BIN
opt/gitea/db/base/1/1249
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1249_fsm
Normal file
BIN
opt/gitea/db/base/1/1249_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1249_vm
Normal file
BIN
opt/gitea/db/base/1/1249_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1255
Normal file
BIN
opt/gitea/db/base/1/1255
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1255_fsm
Normal file
BIN
opt/gitea/db/base/1/1255_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1255_vm
Normal file
BIN
opt/gitea/db/base/1/1255_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1259
Normal file
BIN
opt/gitea/db/base/1/1259
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1259_fsm
Normal file
BIN
opt/gitea/db/base/1/1259_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/1259_vm
Normal file
BIN
opt/gitea/db/base/1/1259_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13460
Normal file
BIN
opt/gitea/db/base/1/13460
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13460_fsm
Normal file
BIN
opt/gitea/db/base/1/13460_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13460_vm
Normal file
BIN
opt/gitea/db/base/1/13460_vm
Normal file
Binary file not shown.
0
opt/gitea/db/base/1/13463
Normal file
0
opt/gitea/db/base/1/13463
Normal file
BIN
opt/gitea/db/base/1/13464
Normal file
BIN
opt/gitea/db/base/1/13464
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13465
Normal file
BIN
opt/gitea/db/base/1/13465
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13465_fsm
Normal file
BIN
opt/gitea/db/base/1/13465_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13465_vm
Normal file
BIN
opt/gitea/db/base/1/13465_vm
Normal file
Binary file not shown.
0
opt/gitea/db/base/1/13468
Normal file
0
opt/gitea/db/base/1/13468
Normal file
BIN
opt/gitea/db/base/1/13469
Normal file
BIN
opt/gitea/db/base/1/13469
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13470
Normal file
BIN
opt/gitea/db/base/1/13470
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13470_fsm
Normal file
BIN
opt/gitea/db/base/1/13470_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13470_vm
Normal file
BIN
opt/gitea/db/base/1/13470_vm
Normal file
Binary file not shown.
0
opt/gitea/db/base/1/13473
Normal file
0
opt/gitea/db/base/1/13473
Normal file
BIN
opt/gitea/db/base/1/13474
Normal file
BIN
opt/gitea/db/base/1/13474
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13475
Normal file
BIN
opt/gitea/db/base/1/13475
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13475_fsm
Normal file
BIN
opt/gitea/db/base/1/13475_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/13475_vm
Normal file
BIN
opt/gitea/db/base/1/13475_vm
Normal file
Binary file not shown.
0
opt/gitea/db/base/1/13478
Normal file
0
opt/gitea/db/base/1/13478
Normal file
BIN
opt/gitea/db/base/1/13479
Normal file
BIN
opt/gitea/db/base/1/13479
Normal file
Binary file not shown.
0
opt/gitea/db/base/1/1417
Normal file
0
opt/gitea/db/base/1/1417
Normal file
0
opt/gitea/db/base/1/1418
Normal file
0
opt/gitea/db/base/1/1418
Normal file
BIN
opt/gitea/db/base/1/174
Normal file
BIN
opt/gitea/db/base/1/174
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/175
Normal file
BIN
opt/gitea/db/base/1/175
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2187
Normal file
BIN
opt/gitea/db/base/1/2187
Normal file
Binary file not shown.
0
opt/gitea/db/base/1/2224
Normal file
0
opt/gitea/db/base/1/2224
Normal file
BIN
opt/gitea/db/base/1/2228
Normal file
BIN
opt/gitea/db/base/1/2228
Normal file
Binary file not shown.
0
opt/gitea/db/base/1/2328
Normal file
0
opt/gitea/db/base/1/2328
Normal file
0
opt/gitea/db/base/1/2336
Normal file
0
opt/gitea/db/base/1/2336
Normal file
BIN
opt/gitea/db/base/1/2337
Normal file
BIN
opt/gitea/db/base/1/2337
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2579
Normal file
BIN
opt/gitea/db/base/1/2579
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2600
Normal file
BIN
opt/gitea/db/base/1/2600
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2600_fsm
Normal file
BIN
opt/gitea/db/base/1/2600_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2600_vm
Normal file
BIN
opt/gitea/db/base/1/2600_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2601
Normal file
BIN
opt/gitea/db/base/1/2601
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2601_fsm
Normal file
BIN
opt/gitea/db/base/1/2601_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2601_vm
Normal file
BIN
opt/gitea/db/base/1/2601_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2602
Normal file
BIN
opt/gitea/db/base/1/2602
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2602_fsm
Normal file
BIN
opt/gitea/db/base/1/2602_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2602_vm
Normal file
BIN
opt/gitea/db/base/1/2602_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2603
Normal file
BIN
opt/gitea/db/base/1/2603
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2603_fsm
Normal file
BIN
opt/gitea/db/base/1/2603_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2603_vm
Normal file
BIN
opt/gitea/db/base/1/2603_vm
Normal file
Binary file not shown.
0
opt/gitea/db/base/1/2604
Normal file
0
opt/gitea/db/base/1/2604
Normal file
BIN
opt/gitea/db/base/1/2605
Normal file
BIN
opt/gitea/db/base/1/2605
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2605_fsm
Normal file
BIN
opt/gitea/db/base/1/2605_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2605_vm
Normal file
BIN
opt/gitea/db/base/1/2605_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2606
Normal file
BIN
opt/gitea/db/base/1/2606
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2606_fsm
Normal file
BIN
opt/gitea/db/base/1/2606_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2606_vm
Normal file
BIN
opt/gitea/db/base/1/2606_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2607
Normal file
BIN
opt/gitea/db/base/1/2607
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2607_fsm
Normal file
BIN
opt/gitea/db/base/1/2607_fsm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2607_vm
Normal file
BIN
opt/gitea/db/base/1/2607_vm
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2608
Normal file
BIN
opt/gitea/db/base/1/2608
Normal file
Binary file not shown.
BIN
opt/gitea/db/base/1/2608_fsm
Normal file
BIN
opt/gitea/db/base/1/2608_fsm
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user