Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If your DualShield is using a MySQL database, follow the steps below to import "IP2LOCATION-LITE-DB3DB5.CSV"

1 - Log into MySQL console

2 - Change to "DualShield" database:

Code Block
languagesql
mysql > use DualShield;

3 - Load dataExecute the script below to import the database

Code Block
languagesql
mysql > LOAD DATA LOCAL INFILE 'FILE-PATH-TO\\IP2LOCATION-LITE-DB3.CSV' INTO TABLE `ip2locationip2location_db3` db3
FIELDS TERMINATED BY ',' ENCLOSED BY '"' 
LINES TERMINATED BY '\r\n' 
IGNORE 0 LINES (ip_from,ip_to,country_code,country_name,region_name,city_name,latitude,longitude);

* replace "FILE-PATH-TO" with the actual file path where the downloaded file is saved, e.g. "cC:\downloads"\Temp"

Image Added

Please note that it can take about 30 minutes to import the data.

Image Added