加载笔记内容...
加载笔记内容...
在配置 GitHub Actions 自托管运行器时,可能会遇到一些常见问题,比如权限限制或运行器无法持续运行。本文将直击核心,分享这些问题的解决方案,帮助你顺利完成配置。
sudo
运行自托管运行器?现象:
运行 ./config.sh
或 ./run.sh
时使用 sudo
,会报错“Must not run with sudo”。
原因:
GitHub Actions 要求运行器以非 root 用户身份运行,提升安全性,避免 root 权限带来的风险。
解决方案:
1sudo adduser --disabled-password --gecos "" github_runner
2sudo -u github_runner -i
3./config.sh --url <URL> --token <TOKEN>
4./run.sh
RUNNER_ALLOW_RUNASROOT=1
,但不建议用于生产环境。sudo
:为运行器用户配置 sudoers
文件,允许无密码执行 sudo
。--gecos
参数的作用是什么?现象:
创建用户时使用 --gecos ""
,想知道其功能。
解释:
--gecos
用于设置 /etc/passwd
中的 GECOS 字段(用户信息,如全名)。加上 --gecos ""
可跳过交互输入,适合脚本自动化。
示例:
1sudo adduser --disabled-password --gecos "" github_runner
结果在 /etc/passwd
中显示:
1github_runner:x:1001:1001::/home/github_runner:/bin/bash
./run.sh
持续运行不退出?现象:
直接运行 ./run.sh
,关闭终端后进程终止。
解决方案:
nohup
或 screen
/tmux
保持后台运行。
nohup
示例:
1nohup ./run.sh > runner.log 2>&1 &
systemd
),实现稳定运行和开机自启。步骤:
1cd /home/github_runner/actions-runner
1sudo ./svc.sh install github_runner
1sudo ./svc.sh start
1systemctl status actions.runner.*
1journalctl -u actions.runner.* -f
优点:
systemctl
管理。配置 GitHub Actions 自托管运行器时,需关注两点:
sudo
。systemd
服务,确保稳定性和可靠性。