... | @@ -135,4 +135,65 @@ git config --global http.postBuffer 524288000 |
... | @@ -135,4 +135,65 @@ git config --global http.postBuffer 524288000 |
|
对`https://gitlab.apulis.com.cn/ran.lu/psutil.git`进行了操作,也是加这个 zip 文件,没有这个问题。
|
|
对`https://gitlab.apulis.com.cn/ran.lu/psutil.git`进行了操作,也是加这个 zip 文件,没有这个问题。
|
|
(
|
|
(
|
|
https://gitlab.apulis.com.cn/ran.lu/psutil/-/tree/feat/test-add-zip
|
|
https://gitlab.apulis.com.cn/ran.lu/psutil/-/tree/feat/test-add-zip
|
|
) |
|
)
|
|
\ No newline at end of file |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[pid 523107] 14:11:09.606926 --- SIGURG {si_signo=SIGURG, si_code=SI_TKILL, si_pid=17, si_uid=1000} ---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
改一下配置文件,加一下日志设置:
|
|
|
|
```
|
|
|
|
cd /data/aistudio/nfs/apulis/pvc/aiplatform-gitea-data
|
|
|
|
ls gitea/conf/
|
|
|
|
app.ini
|
|
|
|
```
|
|
|
|
|
|
|
|
配置似乎不会生效~
|
|
|
|
|
|
|
|
改了 secret, 可以生效了。但是没有出现新的好日志。
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
ssh 进程:
|
|
|
|
root 1039605 0.0 0.0 4292 3384 ? Ss 15:19 0:00 sshd: /usr/sbin/sshd -D -e [listener] 0 of 10-100 startups
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
strace -f -T -tt -e trace=all -p 1039605
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
[pid 1207696] 15:46:28.089729 write(3, "$\207)(\356\327\306\267\271\256\v\233\255S\351\352\376[\324\330\370\32\254\332\360\216\312\252\33\220\260\336"..., 4096) = -1 EBADF (Bad file descriptor) <0.000053>
|
|
|
|
[pid 1207696] 15:46:28.089936 write(2, "error: file write error: Bad fil"..., 45) = 45 <0.000046>
|
|
|
|
[pid 1207438] 15:46:28.090051 <... read resumed> "error: file write error: Bad fil"..., 128) = 45 <9.879668>
|
|
|
|
[pid 1207696] 15:46:28.090106 write(2, "fatal: unable to write loose obj"..., 41 <unfinished ...>
|
|
|
|
[pid 1207438] 15:46:28.090167 write(1, "0032\2", 5 <unfinished ...>
|
|
|
|
```
|
|
|
|
|
|
|
|
发现有 2 处 EBADF:
|
|
|
|
```
|
|
|
|
ioctl(-1, TIOCGPGRP, 0xfffffebfa84c) = -1 EBADF (Bad file descriptor) <0.000029>
|
|
|
|
```
|
|
|
|
|
|
|
|
pid: 1237051
|
|
|
|
|
|
|
|
这个文件句柄:
|
|
|
|
|
|
|
|
```
|
|
|
|
1237051 15:51:01.193577 openat(AT_FDCWD, "/data/git/gitea-repositories/gitea/ouc68z1ntic02v7z0mtabg.git/./objects/incoming-oEoffE/b3/tmp_obj_XwYObm", O_RDWR|O_CREAT|O_EXCL|O_LARGEFILE, 0444) = 3 <0.033109>
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
EBADF
|
|
|
|
fd is not a valid file descriptor or is not open for writing.
|
|
|
|
|
|
|
|
https://linux.die.net/man/2/write
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|