New in Sketch: A major redesign, an all-new Inspector, and more Learn more

Skip Navigation

Metin2 Server File · Updated

If analyzing in an isolated lab environment:

sudo mysql_secure_installation
mysql -u root -p

Once inside MySQL, create the required databases: metin2 server file

CREATE DATABASE account_db;
CREATE DATABASE local_db;
CREATE DATABASE item_db;
CREATE DATABASE log_db;
GRANT ALL PRIVILEGES ON *.* TO 'metin2user'@'localhost' IDENTIFIED BY 'YourStrongPassword';
FLUSH PRIVILEGES;
EXIT;

Now import the SQL files included in your server package: If analyzing in an isolated lab environment: sudo

mysql -u metin2user -p account_db < server_files/sql/account.sql
mysql -u metin2user -p local_db < server_files/sql/local.sql
# Repeat for item_db and log_db

Use an FTP client (like WinSCP or FileZilla) to transfer the server files from your PC to the FreeBSD server. Usually into /usr/home/. Once inside MySQL, create the required databases: CREATE