-
Hello there, Any help would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
It seems like you set the bind permission to the go file instead of the executable. If you aren't interested in the sources, you should download a precompiled executable(or compile it yourself) and set the permission to it. |
Beta Was this translation helpful? Give feedback.
-
Agreed with @kwitsch, it looks like you run blocky with "go run ...". If you want to build blocky from source, please run |
Beta Was this translation helpful? Give feedback.
-
Thank you guys so much! |
Beta Was this translation helpful? Give feedback.
It seems like you set the bind permission to the go file instead of the executable.
If you directly execute the go project changing the port to some unprivileged one would be best practice.
Other solutions would be to give go itself the permission or execute it as root user(I strongly discourage this options).
If you aren't interested in the sources, you should download a precompiled executable(or compile it yourself) and set the permission to it.