AuthMe Reloaded

AuthMe Reloaded

3M Downloads

[Guide] Migrating from Aegis Bungee to AuthMe

Stefatorus opened this issue ยท 1 comments

commented

** 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 **

  1. Get both sqlite databases in your computer.
  2. Use a program like DB Browser for SQLite to open both databases at the same time.
  3. 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
  4. Test and make sure everything works well.
commented

Thank you! We'll try to implement this into the plugin ASAP :)