- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftp messages -filling up syslog.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 12:41 AM
08-18-2003 12:41 AM
ftp messages -filling up syslog.
message start------
Aug 18 09:31:29 prod1 ftpd[9528]: command: QUIT^M
Aug 18 09:31:29 prod1 ftpd[9528]: <--- 221
Aug 18 09:31:29 s ftpd[9528]: Goodbye.
Aug 18 09:31:29 prod1 ftpd[9528]: FTP session closed
Aug 18 09:31:29 prod1 ftpd[9528]: FTP session closed
Aug 18 09:31:30 prod1 ftpd[9529]: <--- 220
Aug 18 09:31:30 prod1 ftpd[9529]: prod1 FTP server (Version 1.1.214.6 Wed
Feb 9 08:03:34 GMT 2000) ready.
message end-----
These messages are written to syslog after every minute. I dont even have inetd logging enabled on my server.
# ps -ef | grep inet
root 589 1 0 May 3 ? 3:29 /usr/sbin/inetd
and also i could not find any active ftp connections.
# netstat -a | grep ftp
tcp 0 0 *.ftp *.* LISTEN
Can any one please assist me what could be the problem.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 12:46 AM
08-18-2003 12:46 AM
Re: ftp messages -filling up syslog.
check logging in the file
/etc/inetd.conf
The entry should look like
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
after the change, let inetd re-read the config file
inetd -c
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 12:52 AM
08-18-2003 12:52 AM
Re: ftp messages -filling up syslog.
as u mentioned.
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l -v
The problem i've posted earlier has just been started a day ago.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 12:54 AM
08-18-2003 12:54 AM
Re: ftp messages -filling up syslog.
your line will look like this:
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -lv
It should be:
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
After making the changes:
# /usr/sbin/intetd -c
which will force the inetd daemon to re-read the config file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 12:54 AM
08-18-2003 12:54 AM
Re: ftp messages -filling up syslog.
-v The debugging information is written to the syslog
file.
Tear it off, and problem should go away after restarting inetd.
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 01:01 AM
08-18-2003 01:01 AM
Re: ftp messages -filling up syslog.
Check next patch,
http://www4.itrc.hp.com/service/patch/patchDetail.do?patchid=PHNE_23949&context=hpux:800:11:00
1. wu-ftpd guest logins cause unnecessary syslog messages.
your version of ftpd 1.1.214.6, latest is 1.1.214.7.
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 01:02 AM
08-18-2003 01:02 AM
Re: ftp messages -filling up syslog.
Remove -v option at the end of FTP stream in /etc/inetd.conf file . then give #inetd -c to make the change to take effect and then see if loging is stopped or not.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 01:18 AM
08-18-2003 01:18 AM
Re: ftp messages -filling up syslog.
now my syslog.log is filling up with
Aug 18 10:13:29 prod ftpd[13186]: FTP session closed
Aug 18 10:13:29 prod ftpd[13186]: FTP session closed
Aug 18 10:13:33 prod ftpd[13187]: FTP session closed
Aug 18 10:13:33 prod ftpd[13187]: FTP session closed
Aug 18 10:13:34 prod ftpd[13188]: FTP session closed
Aug 18 10:13:34 prod ftpd[13188]: FTP session closed
Aug 18 10:14:33 prod ftpd[13615]: FTP session closed
Aug 18 10:14:33 prod ftpd[13615]: FTP session closed
we do have -v enabled on other servers and they seems to have no messages in syslog.log which i posted earlier.
Any help?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 02:14 AM
08-18-2003 02:14 AM