We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
After spending whole day with compiling errors on fedora 36 i finally managed to compile the applications. But i am still not able to run the server:
sudo cargo run --bin server [ERROR server] Error: Invalid argument (os error 22)
cargo run --bin server [ERROR server] Error: Permission denied (os error 13)
sudo systemctl status rkvm-server.service Process: 62046 ExecStart=/opt/rkvm/server (code=exited, status=203/EXEC) Nov 05 13:41:19 boffice systemd[1]: rkvm-server.service: Start request repeated too quickly. Nov 05 13:41:19 boffice systemd[1]: rkvm-server.service: Failed with result 'exit-code'. Nov 05 13:41:19 boffice systemd[1]: Failed to start rkvm-server.service - rkvm server.
The text was updated successfully, but these errors were encountered:
Try to look at the strace output, something like:
sudo strace ./server ./server.toml
Sorry, something went wrong.
execve("./server", ["./server", "./server.toml"], 0x7ffec1ad9fe8 /* 19 vars */) = -1 EACCES (Permission denied) strace: exec: Permission denied +++ exited with 1 +++
It seems you forgot sudo
Nope:
sudo strace ./server ./server.toml execve("./server", ["./server", "./server.toml"], 0x7ffec1ad9fe8 /* 19 vars */) = -1 EACCES (Permission denied) strace: exec: Permission denied +++ exited with 1 +++
No branches or pull requests
Hello,
After spending whole day with compiling errors on fedora 36 i finally managed to compile the applications.
But i am still not able to run the server:
The text was updated successfully, but these errors were encountered: