[Guide] Migrating from Aegis Bungee to AuthMe
Stefatorus opened this issue ยท 1 comments
** Pretext **
This tutorial provides some guidance in migrating from Aegis bungee to authme. To complete, you'll need medium knowledge of SQL, SQLite, etc.
** Steps **
- Get both sqlite databases in your computer.
- Use a program like DB Browser for SQLite to open both databases at the same time.
- Run the following query to move over user information.
INSERT or REPLACE INTO authme(username, realname, password) SELECT lower(auth_database.aegisauth_users.name), auth_database.aegisauth_users.name, auth_database.aegisauth_users.password FROM auth_database.aegisauth_users WHERE auth_database.aegisauth_users.password IS NOT NULL
- Test and make sure everything works well.