问题描述
我已经使用sudo apt-get install hitch在Ubuntu 20.01.1中安装了Hitch“ TLS代理”。当我尝试启动该服务时,我得到以下>
Loaded: loaded (/etc/systemd/system/hitch.service; enabled; vendor preset: enabled)
Active: Failed (Result: exit-code) since Fri 2020-10-09 12:51:47 EEST; 28s ago
Process: 176323 ExecStartPre=/usr/sbin/hitch -t $HITCH_OPTIONS (code=exited,status=0/SUCCESS)
Process: 176337 ExecStart=/usr/sbin/hitch --daemon $HITCH_OPTIONS (code=exited,status=1/FAILURE)
Oct 09 12:51:47 webserver-1 systemd[1]: Starting hitch...
Oct 09 12:51:47 webserver-1 hitch[176323]: Trying to initialize SSL contexts with your certificates
Oct 09 12:51:47 webserver-1 hitch[176323]: hitch configuration looks ok.
Oct 09 12:51:47 webserver-1 systemd[1]: hitch.service: Control process exited,code=exited,status=1/FAILURE
Oct 09 12:51:47 webserver-1 systemd[1]: hitch.service: Failed with result 'exit-code'.
Oct 09 12:51:47 webserver-1 systemd[1]: Failed to start hitch.
我的/etc/hitch/hitch.conf是以下>
tls-protos = TLSv1.2 TLSv1.3
frontend = {
host = "*"
port = "443"
}
#When using TCP/IP
backend = "[127.0.0.1]:6086"
workers = 2
# run Varnish as backend over PROXY; varnishd -a :80 -a localhost:6086,PROXY ..
write-proxy-v2 = on
#Using Unix Domain Sockets
#backend = "/run/varnish.sock"
#workers = 2
# We strongly recommend you create a separate non-privileged hitch
# user and group
daemon = on
user = "_hitch"
group = "_hitch"
#ocsp-dir = "/etc/hitch/ocsp"
#ocsp-verify-staple = on
#To generate a certificate use:
# cat cert.key cert.crt cacert.crt > /etc/hitch/certs/site1.com-combined.pe
pem-file = "/etc/letsencrypt/live/sunananas.com/hitch-bundle.pem"
# Enable to let clients negotiate HTTP/2 with ALPN. (default off) (jessie openssl doesn't suppor>
alpn-protos = "h2,http/1.1"
还使用了hitch.service>
[Unit]
Description=hitch
After=syslog.target network.target
[Service]
Type=forking
#PIDFile=/run/hitch/hitch.pid
#Restart=on-failure
LimitNOFILE=131072
Environment="HITCH_OPTIONS=--config /etc/hitch/hitch.conf"
EnvironmentFile=-/etc/hitch/hitch.params
EnvironmentFile=-/etc/default/hitch
EnvironmentFile=-/etc/sysconfig/hitch
ExecStartPre=/usr/sbin/hitch -t $HITCH_OPTIONS
ExecStart=/usr/sbin/hitch --daemon $HITCH_OPTIONS
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target
我看到/ run / hitch /目录丢失了,所以我mkdir / run / hitch /没有成功。我还尝试使用下面的solution覆盖搭便车服务,结果相同。
systemctl edit hitch.service
[Service]
ExecStartPre=-mkdir /run/hitch/
ExecStartPre=-chown hitch:hitch /run/hitch/
感谢您的帮助
解决方法
请尝试在命令行上手动运行/usr/sbin/hitch --config /etc/hitch/hitch.conf
,以查看返回的错误。
注意:daemon
中的hitch.conf
选项处于活动状态,这会使调试更加困难。请对此进行注释,以确保Hitch在前台运行。
让我知道此命令的输出是什么,所以我们可以找出解决方案。