MaxMind GeoIP CSV to .datNginX GeoIP cause extra load?php5-geoip performance issueInstalling GeoIP on CentOSMake kernel modules available that have been deactivated on FedoraHow to Split a Huge CSV File in Linux?Varnish GeoIP (vmod_geoip) + Amazon LinuxHow to test GeoIP .dat librairie in localGEOIP redirect with httpsdebian, lighttpd: GeoIP, Some variables are not workingInstalling GeoIP on Amazon EC2 Linux

Ethical issue - how can I better document what is happening?

What does $!# mean in Shell scripting?

How to respond to upset student?

Why were helmets and other body armour not commonplace in the 1800s?

Construct a word ladder

Why most published works in medical imaging try reducing false positives?

How to attach cable mounting points to a bicycle frame?

USPS Back Room - Trespassing?

How did NASA Langley end up with the first 737?

I know that there is a preselected candidate for a position to be filled at my department. What should I do?

Have 1.5% of all nuclear reactors ever built melted down?

Is the field of q-series 'dead'?

Python program to take in two strings and print the larger string

NIntegrate doesn't evaluate

How to deal with a colleague who is being aggressive?

Question in discrete mathematics about group permutations

Count rotary dial pulses in a phone number (including letters)

Why does this if-statement combining assignment and an equality check return true?

What is a Power on Reset IC?

When the Torah was almost lost and one (or several) Rabbis saved it?

Count Even Digits In Number

Efficient Algorithm for the boundary of a set of tiles

How to cut a climbing rope?

Can a person survive on blood in place of water?



MaxMind GeoIP CSV to .dat


NginX GeoIP cause extra load?php5-geoip performance issueInstalling GeoIP on CentOSMake kernel modules available that have been deactivated on FedoraHow to Split a Huge CSV File in Linux?Varnish GeoIP (vmod_geoip) + Amazon LinuxHow to test GeoIP .dat librairie in localGEOIP redirect with httpsdebian, lighttpd: GeoIP, Some variables are not workingInstalling GeoIP on Amazon EC2 Linux






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








2















I need to put local IP addresses into MaxMind GeoIP DB.
I've downloaded the CSV and adding new IP addresses and locations is easy.
I've found two tools that do csv to dat for MaxMind GeoIP but I can't get them work.



With python script:



./csv2dat.py -w custom_geoip.dat mmcountry working.csv 
File "./csv2dat.py", line 69
print "error: database types don't match"
SyntaxError: Missing parentheses in call to 'print'


Also, I've tried to compile cpp script (https://github.com/dankamongmen/sprezzos-world/blob/master/packaging/geoip/debian/src/geoip-csv-to-dat.cpp) but I get large strace.



I've tried with new and old MaxMind DB. is there any other tool?



Thanks










share|improve this question




























    2















    I need to put local IP addresses into MaxMind GeoIP DB.
    I've downloaded the CSV and adding new IP addresses and locations is easy.
    I've found two tools that do csv to dat for MaxMind GeoIP but I can't get them work.



    With python script:



    ./csv2dat.py -w custom_geoip.dat mmcountry working.csv 
    File "./csv2dat.py", line 69
    print "error: database types don't match"
    SyntaxError: Missing parentheses in call to 'print'


    Also, I've tried to compile cpp script (https://github.com/dankamongmen/sprezzos-world/blob/master/packaging/geoip/debian/src/geoip-csv-to-dat.cpp) but I get large strace.



    I've tried with new and old MaxMind DB. is there any other tool?



    Thanks










    share|improve this question
























      2












      2








      2


      3






      I need to put local IP addresses into MaxMind GeoIP DB.
      I've downloaded the CSV and adding new IP addresses and locations is easy.
      I've found two tools that do csv to dat for MaxMind GeoIP but I can't get them work.



      With python script:



      ./csv2dat.py -w custom_geoip.dat mmcountry working.csv 
      File "./csv2dat.py", line 69
      print "error: database types don't match"
      SyntaxError: Missing parentheses in call to 'print'


      Also, I've tried to compile cpp script (https://github.com/dankamongmen/sprezzos-world/blob/master/packaging/geoip/debian/src/geoip-csv-to-dat.cpp) but I get large strace.



      I've tried with new and old MaxMind DB. is there any other tool?



      Thanks










      share|improve this question














      I need to put local IP addresses into MaxMind GeoIP DB.
      I've downloaded the CSV and adding new IP addresses and locations is easy.
      I've found two tools that do csv to dat for MaxMind GeoIP but I can't get them work.



      With python script:



      ./csv2dat.py -w custom_geoip.dat mmcountry working.csv 
      File "./csv2dat.py", line 69
      print "error: database types don't match"
      SyntaxError: Missing parentheses in call to 'print'


      Also, I've tried to compile cpp script (https://github.com/dankamongmen/sprezzos-world/blob/master/packaging/geoip/debian/src/geoip-csv-to-dat.cpp) but I get large strace.



      I've tried with new and old MaxMind DB. is there any other tool?



      Thanks







      linux csv geoip






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 1 '16 at 15:31









      yaxyax

      164




      164




















          1 Answer
          1






          active

          oldest

          votes


















          0














          geoip-csv-to-dat.cpp - is the part of geoip-bin package and could be installed from Debian or Ubuntu repository if it is your linux distributive.



          apt-get install geoip-bin
          /usr/lib/geoip/geoip-generator --help


          UPDATE:
          digging into the source uncovered that maxmind country and city csv databases got completely different formats so you have to provide different bunches of arguments to process it.



          For country database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat working.csv 


          For city database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat -t 
          GEOIP_CITY_EDITION_REV1 -l working-locations.csv working-blocks.csv


          As for csv2dat.py - looks like you are trying to execute Python 2 script with Python 3 interpreter. Try:



          python2.7 csv2dat.py -w custom_geoip.dat mmcountry working.csv 





          share|improve this answer

























          • This looks like the perfect answer but when I run it I get /usr/lib/geoip/geoip-generator:GeoLite2-City-Blocks-IPv4.csv:2: Wrong number of fields. Any ideas what the fields should be for this to work? The fields I have are 'network geoname_id, registered_country_geoname_id, represented_country_geoname_id, is_anonymous_proxy, is_satellite_provider, postal_code, latitude, longitude, accuracy_radius' as per the latest geolite city download.

            – H2ONOCK
            Jan 19 at 9:27











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "2"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f780316%2fmaxmind-geoip-csv-to-dat%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          geoip-csv-to-dat.cpp - is the part of geoip-bin package and could be installed from Debian or Ubuntu repository if it is your linux distributive.



          apt-get install geoip-bin
          /usr/lib/geoip/geoip-generator --help


          UPDATE:
          digging into the source uncovered that maxmind country and city csv databases got completely different formats so you have to provide different bunches of arguments to process it.



          For country database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat working.csv 


          For city database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat -t 
          GEOIP_CITY_EDITION_REV1 -l working-locations.csv working-blocks.csv


          As for csv2dat.py - looks like you are trying to execute Python 2 script with Python 3 interpreter. Try:



          python2.7 csv2dat.py -w custom_geoip.dat mmcountry working.csv 





          share|improve this answer

























          • This looks like the perfect answer but when I run it I get /usr/lib/geoip/geoip-generator:GeoLite2-City-Blocks-IPv4.csv:2: Wrong number of fields. Any ideas what the fields should be for this to work? The fields I have are 'network geoname_id, registered_country_geoname_id, represented_country_geoname_id, is_anonymous_proxy, is_satellite_provider, postal_code, latitude, longitude, accuracy_radius' as per the latest geolite city download.

            – H2ONOCK
            Jan 19 at 9:27















          0














          geoip-csv-to-dat.cpp - is the part of geoip-bin package and could be installed from Debian or Ubuntu repository if it is your linux distributive.



          apt-get install geoip-bin
          /usr/lib/geoip/geoip-generator --help


          UPDATE:
          digging into the source uncovered that maxmind country and city csv databases got completely different formats so you have to provide different bunches of arguments to process it.



          For country database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat working.csv 


          For city database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat -t 
          GEOIP_CITY_EDITION_REV1 -l working-locations.csv working-blocks.csv


          As for csv2dat.py - looks like you are trying to execute Python 2 script with Python 3 interpreter. Try:



          python2.7 csv2dat.py -w custom_geoip.dat mmcountry working.csv 





          share|improve this answer

























          • This looks like the perfect answer but when I run it I get /usr/lib/geoip/geoip-generator:GeoLite2-City-Blocks-IPv4.csv:2: Wrong number of fields. Any ideas what the fields should be for this to work? The fields I have are 'network geoname_id, registered_country_geoname_id, represented_country_geoname_id, is_anonymous_proxy, is_satellite_provider, postal_code, latitude, longitude, accuracy_radius' as per the latest geolite city download.

            – H2ONOCK
            Jan 19 at 9:27













          0












          0








          0







          geoip-csv-to-dat.cpp - is the part of geoip-bin package and could be installed from Debian or Ubuntu repository if it is your linux distributive.



          apt-get install geoip-bin
          /usr/lib/geoip/geoip-generator --help


          UPDATE:
          digging into the source uncovered that maxmind country and city csv databases got completely different formats so you have to provide different bunches of arguments to process it.



          For country database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat working.csv 


          For city database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat -t 
          GEOIP_CITY_EDITION_REV1 -l working-locations.csv working-blocks.csv


          As for csv2dat.py - looks like you are trying to execute Python 2 script with Python 3 interpreter. Try:



          python2.7 csv2dat.py -w custom_geoip.dat mmcountry working.csv 





          share|improve this answer















          geoip-csv-to-dat.cpp - is the part of geoip-bin package and could be installed from Debian or Ubuntu repository if it is your linux distributive.



          apt-get install geoip-bin
          /usr/lib/geoip/geoip-generator --help


          UPDATE:
          digging into the source uncovered that maxmind country and city csv databases got completely different formats so you have to provide different bunches of arguments to process it.



          For country database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat working.csv 


          For city database:



          /usr/lib/geoip/geoip-generator -v -o custom_geoip.dat -t 
          GEOIP_CITY_EDITION_REV1 -l working-locations.csv working-blocks.csv


          As for csv2dat.py - looks like you are trying to execute Python 2 script with Python 3 interpreter. Try:



          python2.7 csv2dat.py -w custom_geoip.dat mmcountry working.csv 






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 30 '16 at 8:02

























          answered Nov 29 '16 at 13:33









          Alexander KlimenkoAlexander Klimenko

          1365




          1365












          • This looks like the perfect answer but when I run it I get /usr/lib/geoip/geoip-generator:GeoLite2-City-Blocks-IPv4.csv:2: Wrong number of fields. Any ideas what the fields should be for this to work? The fields I have are 'network geoname_id, registered_country_geoname_id, represented_country_geoname_id, is_anonymous_proxy, is_satellite_provider, postal_code, latitude, longitude, accuracy_radius' as per the latest geolite city download.

            – H2ONOCK
            Jan 19 at 9:27

















          • This looks like the perfect answer but when I run it I get /usr/lib/geoip/geoip-generator:GeoLite2-City-Blocks-IPv4.csv:2: Wrong number of fields. Any ideas what the fields should be for this to work? The fields I have are 'network geoname_id, registered_country_geoname_id, represented_country_geoname_id, is_anonymous_proxy, is_satellite_provider, postal_code, latitude, longitude, accuracy_radius' as per the latest geolite city download.

            – H2ONOCK
            Jan 19 at 9:27
















          This looks like the perfect answer but when I run it I get /usr/lib/geoip/geoip-generator:GeoLite2-City-Blocks-IPv4.csv:2: Wrong number of fields. Any ideas what the fields should be for this to work? The fields I have are 'network geoname_id, registered_country_geoname_id, represented_country_geoname_id, is_anonymous_proxy, is_satellite_provider, postal_code, latitude, longitude, accuracy_radius' as per the latest geolite city download.

          – H2ONOCK
          Jan 19 at 9:27





          This looks like the perfect answer but when I run it I get /usr/lib/geoip/geoip-generator:GeoLite2-City-Blocks-IPv4.csv:2: Wrong number of fields. Any ideas what the fields should be for this to work? The fields I have are 'network geoname_id, registered_country_geoname_id, represented_country_geoname_id, is_anonymous_proxy, is_satellite_provider, postal_code, latitude, longitude, accuracy_radius' as per the latest geolite city download.

          – H2ONOCK
          Jan 19 at 9:27

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Server Fault!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f780316%2fmaxmind-geoip-csv-to-dat%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

          Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

          What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company