3

My /var/log/messages is full of messages like:

Jan 29 01:00:02 vm2147 pure-ftpd: (?@::1) [INFO] New connection from ::1
Jan 29 01:00:02 vm2147 pure-ftpd: (?@::1) [INFO] Logout.
Jan 29 01:05:02 vm2147 pure-ftpd: (?@::1) [INFO] New connection from ::1
Jan 29 01:05:02 vm2147 pure-ftpd: (?@::1) [INFO] Logout.

These messages are generated every five minutes. What do they mean and is it a problem? How can I prevent them?

My system is 2.6.35.12-90.fc14.x86_64.

4
  • Could you take a look into your crontab? Maybe something is defined there as a every 5-minute task. Commented Jan 29, 2012 at 4:09
  • Thank you, you were exactly right. There was */5 * * * * php -f /var/www/simira/web/pimcore/cli/maintenance.php. I configured that a long time ago. I'll remove it and see if the messages stop. I would like to upload your comment but it seems like I can't :(. Commented Jan 29, 2012 at 4:13
  • So I make it an anwser :-P Commented Jan 29, 2012 at 4:16
  • rofl, i still need at least 15 reputation for that. When I get it, ill upvote you for sure xD Commented Jan 29, 2012 at 4:18

2 Answers 2

3

Could you take a look into your crontab? Maybe something is defined there as a every 5-minute task.

2

::1 is the IPv6 address for localhost, so the connection is coming from your machine itself. Due to the regularity of the connections, this is undoubtedly a crontab that runs every 5 minutes. Look in /etc/crontab, /etc/cron.*/* and /var/spool/cron/crontabs/* for a job that has */5 in the first column and looks like it might be making FTP connections.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.