Skip to content

Clash 服务运行

使用 systemd

  • 下载二进制可执行文件 releases

  • 将下载的二进制可执行文件重名名为 clash 并移动到 /usr/local/bin/

  • 以守护进程的方式,运行 clash。

使用以下命令将 clash 二进制文件复制到 /usr/local/bin, 配置文件复制到 /etc/clash:

cp clash /usr/local/bin
cp config.yaml /etc/clash

创建 systemd 配置文件 /etc/systemd/system/clash.service:

[Unit]
Description=clash Daemon, Another Clash Kernel.
After=network.target NetworkManager.service systemd-networkd.service iwd.service

[Service]
Type=simple
LimitNPROC=500
LimitNOFILE=1000000
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE CAP_SYS_TIME
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE CAP_SYS_TIME
Restart=always
ExecStartPre=/usr/bin/sleep 1s
ExecStart=/usr/local/bin/clash -d /etc/clash
ExecReload=/bin/kill -HUP $MAINPID

[Install]
WantedBy=multi-user.target

使用以下命令重新加载 systemd:

systemctl daemon-reload

启用 clash 服务:

systemctl enable clash

使用以下命令立即启动 clash:

systemctl start clash

使用以下命令使 clash 重新加载:

systemctl reload clash

使用以下命令检查 clash 的运行状况和日志:

systemctl status clash
journalctl -xe

Last update: 2023年11月10日