我无法启用或禁用用户服务:无法执行操作:没有此类文件或目录
我想在Eclipse中调试/测试使用Redis服务器的程序,因此我决定将服务器转换为用户服务以具有运行它的特权。让我困扰的是我可以启动或停止该服务,但无法启用/禁用它。 我得到的错误是: Failed to execute operation: No such file or directory 原始的/ usr / lib / systemd / system: [Unit] Description=Advanced key-value store After=network.target [Service] User=arkos ExecStart=/usr/bin/redis-server /etc/arkos/arkos-redis.conf ExecStop=/usr/bin/redis-cli shutdown [Install] WantedBy=multi-user.target 编辑并移至/ usr / lib / systemd / user: [Unit] Description=Advanced key-value store [Service] ExecStart=/usr/bin/redis-server /etc/arkos/arkos-redis.conf ExecStop=/usr/bin/redis-cli shutdown [Install] …