Can code-server support multi-user ? #6253
Answered
by
jeffliao888
jeffliao888
asked this question in
Q&A
-
I want to run code-server in one server for multi-user login accounts, that can be easily to manage the users for me. Does any solution for my issue ? Thank you very much ! |
Beta Was this translation helpful? Give feedback.
Answered by
jeffliao888
Jun 7, 2023
Replies: 1 comment 3 replies
-
There is no multi-user support built into code-server at the moment. This issue is somewhat related since we would need multi-user support for it: #33. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dear @code-asher ,
Thank you very much for your help!
I found that if I setup as the following in my machineA server
userA: use port 8081 which set in ~/.config/code-server/config.yaml -> bind-addr: 127.0.0.1:8081
userB: use port 8082 which set in ~/.config/code-server/config.yaml -> bind-addr: 127.0.0.1:8082
userC: use port 8083 which set in ~/.config/code-server/config.yaml -> bind-addr: 127.0.0.1:8083
after I start the service
then 3 user(userA, userB and userC) can use code-server in one server now, I think I have got my solution already, Thank you !