New Server, having issues with lots of commands #2110
-
Hello everyone. Before I begin I want to ensure everyone that I've done my share of research on the web to see if I can self-resolve the issue. I'm out of ideas so now I turn to you all. Scenario: Just setup a new server for my game clan to use, and I'm having trouble adding someone to the admin group. After logging in as the /owner I issued a /su to grant myself SuperUser rights. I then attempted to add the user with the following syntax:
Every attempt fails, telling me that the /user syntax isn't correct and to search for help for /user. I've had a few other tech friends of mine look at the screen with me to see what I could be doing wrong, and we all end up scratching our collective heads on it. When I look at the server-side information via Putty, the log file is HUGE, with mass entries in it such as the attached image to this post.
I will also add that he appears to be the only user who is experiencing the issue. Pax's user account has been registered to the server and he has successfully logged into it. His game-play is not interrupted at all on the user side, but this is what's happening on the server-side. I'm running the server on a Debian Linux VM with sufficient resources dedicated to it. Any and all help is greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 3 replies
-
Another screen capture: |
Beta Was this translation helpful? Give feedback.
-
Can you try `user group username admin` from the console?
I've had a few other tech friends of mine look at the screen with me to see what I could be doing wrong, and we all end up scratching our collective heads on it. When I look at the server-side information via Putty, the log file is HUGE, with mass entries in it such as the attached image to this post.
You can turn off debug logs in the config file (search for "DebugLogs" and set to `false`).
GitHub <[email protected]> wrote:
“Another screen capture:”
[Capture]
“ —
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.”
|
Beta Was this translation helpful? Give feedback.
-
It should also be mentioned that Pax is already part of the 'default' group, too. |
Beta Was this translation helpful? Give feedback.
-
Another thing that we're experiencing is when Pax lays down a teleporter, only he can see and use it. Anyone else is then unable to place a teleporter gem because one already exists in the biom. |
Beta Was this translation helpful? Give feedback.
-
Seems that I may have stumbled upon the solution, would like to have feedback though in case it's still incorrect:
Previously my account was listed in the 'owner' group, which I thought was the 'owner of the server'. Looking at it more closely it appears that it was a GROUP owner instead. Once I moved myself to super admin, I was able to issue the following command at the terminal level:
I first attempted to add him to just the 'admin' group, but he didn't have the ability to move NPC's and such. Moving him to the trustedadmin group seems to allow him to have the ability to function like self-hosted server game. One more question though, where can I see a list of permissions that each group has assigned to it, so I can modify that accordingly? |
Beta Was this translation helpful? Give feedback.
Seems that I may have stumbled upon the solution, would like to have feedback though in case it's still incorrect:
/user group <my_account> superadmin
Previously my account was listed in the 'owner' group, which I thought was the 'owner of the server'. Looking at it more closely it appears that it was a GROUP owner instead. Once I moved myself to super admin, I was able to issue the following command at the terminal level:
/user group "Pax Empyrean" trustedadmin
I first attempted to add him to just the 'admin' group, but he didn't have the ability to move NPC's and such. Moving him to the trustedadmin group seems to allow him to have the ability to function like self-hosted server game.
O…