AuthMe bağlantısı yapmadan önce AuthMe'nin en son sürümünü kullandığınızdan emin olunuz. Son sürüm için: https://www.spigotmc.org/resources/authmereloaded.6269/
AuthMe bağlantısı için config.yml kısmındaki mySQLTablename'ın değerini Accounts yapmalısınız.
Örnek config.yml dosyası (Sadece DataSource kısmıdır yani ExternalBoardOptions kısmına kadar olan ayarlardır):
DataSource:# What type of database do you want to use?# Valid values: SQLITE, MYSQL, POSTGRESQLbackend: 'MYSQL'# Enable the database caching system, should be disabled on bungeecord environments# or when a website integration is being used.caching: false# Database host addressmySQLHost: 'MYSQL_IP_ADRESI'# Database portmySQLPort: '3306'# Connect to MySQL database over SSLmySQLUseSSL: false# Verification of server's certificate.# We would not recommend to set this option to false.# Set this option to false at your own risk if and only if you know what you're doingmySQLCheckServerCertificate: true# Username to connect to the MySQL databasemySQLUsername: 'MYSQL_KULLANICI_ADI'# Password to connect to the MySQL databasemySQLPassword: 'MYSQL_ŞİFRE'# Database Name, use with converters or as SQLITE database namemySQLDatabase: 'MYSQL_VERITABANI_ADI'# Table of the databasemySQLTablename: 'Accounts'# Column of IDs to sort datamySQLColumnId: 'id'# Column for storing or checking players nicknamemySQLColumnName: 'username'# Column for storing or checking players RealNamemySQLRealName: 'realname'# Column for storing players passwordsmySQLColumnPassword: 'password'# Column for storing players passwords saltsmySQLColumnSalt: ''# Column for storing players emailsmySQLColumnEmail: 'email'# Column for storing if a player is logged in or notmySQLColumnLogged: 'isLogged'# Column for storing if a player has a valid session or notmySQLColumnHasSession: 'hasSession'# Column for storing a player's TOTP key (for two-factor authentication)mySQLtotpKey: 'totp'# Column for storing the player's last IPmySQLColumnIp: 'ip'# Column for storing players lastloginsmySQLColumnLastLogin: 'lastlogin'# Column storing the registration datemySQLColumnRegisterDate: 'regdate'# Column for storing the IP address at the time of registrationmySQLColumnRegisterIp: 'regip'# Column for storing player LastLocation - XmySQLlastlocX: 'x'# Column for storing player LastLocation - YmySQLlastlocY: 'y'# Column for storing player LastLocation - ZmySQLlastlocZ: 'z'# Column for storing player LastLocation - World NamemySQLlastlocWorld: 'world'# Column for storing player LastLocation - YawmySQLlastlocYaw: 'yaw'# Column for storing player LastLocation - PitchmySQLlastlocPitch: 'pitch'# Overrides the size of the DB Connection Pool, auto = -1, default = 10poolSize: -1# The maximum lifetime of a connection in the pool, default = 1800 seconds# You should set this at least 30 seconds less than mysql server wait_timeoutmaxLifetime: 1800