Next Steps
Revision as of 01:57, 7 April 2021 by DarksHeiress (talk | contribs) (Created page with "== Introduction == Welcome! This is the next part in our EVEmu tutorial. At this point you should have a working server and client and be able to connect. We're going to cover...")
Introduction
Welcome! This is the next part in our EVEmu tutorial. At this point you should have a working server and client and be able to connect. We're going to cover a couple different topics here so please check the Contents to find out what exactly you're looking for.
Market Seeding
The EVEmu Market by default comes unseeded. This means that there are no buy or sell orders populated into the database. We're going to cover how to fix that.
Docker Seeding
To be able to seed our market with the EVEmu docker setup we have to make a few changes to the docker-compose.yml
- Locate your root EVEmu directory
- Assuming you are on linux run
nano docker-compose.yml
- You should be presented with something like Figure 1
- There are two changes you need to make here. Change
#ports:
to beports:
. Do this by removing the # in front of the line - Next remove the # in front of
# - "3306:3306"
so that it looks like- "3306:3306"
Ctrl + O
- Click Enter
Ctrl + X
- Assuming you already have the mysql client installed run
mysql -u evemu -p -h 127.0.0.1 < sql/seed_and_clean/seed_market.sql
from the evemu_Crucible folder. - You will be prompted for a password. Enter
evemu
- This will take awhile to complete. Once it is done run
mysql -u evemu -p -h 127.0.0.1
- This will bring you into the mysql client connected to the EVEmu database.
- Insert
use evemu;
- Click Enter
- Now run
select * from mktOrders LIMIT 10;
This command grabs the top 10 entries in the mktOrders table. - If this command returns data you now have a successfully seeded market.
- NOTE: The script that we ran in Step 9 currently only seeds the Derelik Region. If you'd like to seed others please change the
regionID
variable in theseed_market.sql
script
- NOTE: The script that we ran in Step 9 currently only seeds the Derelik Region. If you'd like to seed others please change the
Source Seeding
- Locate your root EVEmu directory
- Assuming you already have the mysql client installed run
mysql -u evemu -p -h 127.0.0.1 < sql/seed_and_clean/seed_market.sql
from the evemu_Crucible folder. - You will be prompted for a password. Enter your evemu users password.
- This will take awhile to complete. Once it is done run
mysql -u evemu -p -h 127.0.0.1
- This will bring you into the mysql client connected to the EVEmu database.
- Insert
use evemu;
- Click Enter
- Now run
select * from mktOrders LIMIT 10;
This command grabs the top 10 entries in the mktOrders table. - If this command returns data you now have a successfully seeded market.
- NOTE: The script that we ran in Step 9 currently only seeds the Derelik Region. If you'd like to seed others please change the
regionID
variable in theseed_market.sql
script
- NOTE: The script that we ran in Step 9 currently only seeds the Derelik Region. If you'd like to seed others please change the