Greetings,
After few years of using Trinity on my home PC, i decided to get dedicated machine based on Linux. (Suggested version of Debian)
I'm total newbie on Linux, and i keep failing to download client and to setup mysql.
Used official TrinityCore setup guide.
apt-get install git cmake make gcc g++ libmysqlclient-dev libssl-dev libbz2-dev libreadline-dev libncurses-dev libboost-all-dev mysql-server p7zip
sudo adduser knindza
sudo su - knindza
cd ~/
git clone -b 3.3.5 git://github.com/TrinityCore/TrinityCore.git
cd TrinityCore
mkdir build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=/home/knindza/server
make
make install
cd ~/TrinityCore/
git pull origin 3.3.5
0 errors everything is ok so far - Trying to setup MySql databases with following (Changed info in config files to match user root and my password - instead of trinity/trinity
mysql -u root -p
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'my_password';
mysql> FLUSH PRIVILEGES;
cd
mysql -u root -p
mysql> CREATE DATABASE IF NOT EXISTS auth;
mysql> CREATE DATABASE IF NOT EXISTS characters;
mysql> CREATE DATABASE IF NOT EXISTS world;
cd ~/TrinityCore/sql/base
mysql -u root -p auth < auth_database.sql
mysql -u root -p characters < characters_database.sql
Now, since it's my first time to use Linux, i have no idea how to download client for maps and etc.
Also, when i try to connect to server via HeidiSql - Server not found.
Do i need to grant privileges on user i created while compiling which will require to change info into configs as well?
Any help about what commands to use for download and link if possible would help a lot.
Regards, Knindza.