Replies: 1 comment 11 replies
-
Are you hashing the password? The source expects an MD5 hashed password, not plaintext. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I would like to run the server to learn/practice Go with a game I love and was wondering if we could get more details as to how to run this ?
Here are the steps I followed:
Here is my problem. When I try to login, I can't seem to login. I tried connecting to the valhalla-master-db-1 container with root and inserting a row in the accounts table using a query like this : insert into accounts (accountID, username, password, isLogedIn, adminLevel, isBanned, gender, dob) values (1, "user123", "test123", 0, 0, 0, 0, 1990);
The query executed fine, however I still can't log in using the provided info (user123/test123). I get the "Invalid login id" or the "wrong password" errors. The client seems to be connecting to the server because I can see the following output : 2022/05/26 14:19:25 New client from 172.X.X.X:56744
Is there anything else to get this working that I missed ?
Thank you for your help !
Beta Was this translation helpful? Give feedback.
All reactions