I have installed the apache nutch for web crawling. I want to crawl a website that has the following robots.txt:
User-Agent: *
Disallow: /
Is there any way to crawl this website with apache nutch?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In nutch-site.xml, set protocol.plugin.check.robots to false
OR
You can comment out the code where the robots check is done.
In Fetcher.java, lines 605-614 are doing the check. Comment that entire block