» Find Revision
L2J Revision Number: latest
L2JDP Revision Number: latest
Im trying to install L2J on ubuntu 12.04 using this wiki help page - http://l2jserver.com/wiki/Setup_Server_-_Linux
I got as far as :
After that its gets a little cloudy. Anyone know what happens in steps 2,3, and so on or have any tips on what to do next? Thank you.Installing actual server
1) Install MySQL and create the DB
Most linux distributions already have MySQL available. You'll need to install both the server and the client package. If it's a separate archive, you may skip the development packages (they are only needed when you create C/C++ programs using MySQL)
If you've a full LAMP system (Linux Apache Mysql PHP), you may also install phpMyAdmin (http://www.phpmyadmin.net) which will make the use of MySQL easier. Some distributions also have it already packaged.
Once MySQL is installed, the first thing that you'll need to do is to change the root password. This can be done by the mysqladmin command :
mysqladmin -u root password NEWPASSWORD
Next, you'll have to create the Databases needed for L2J. Although Login server and Game server DB could be merged (no duplicate table name), it's much safer to create 3 separate databases
mysql -h localhost -u root -p (you'll be prompted for a password)
create database l2jldb; (Login Server)
create database l2jgdb; (Game Server)
create database l2jcdb; (Community server)
Then, a good idea is to have a user specific to L2J access on the DB (with a password different from the root password)
grant CREATE,INSERT,DELETE,UPDATE,SELECT on l2jldb.* to l2j@localhost;
grant CREATE,INSERT,DELETE,UPDATE,SELECT on l2jgdb.* to l2j@localhost;
grant CREATE,INSERT,DELETE,UPDATE,SELECT on l2jcdb.* to l2j@localhost;
set password for l2j = password(' l2jpassword ');
flush privileges;