- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ftpd message in syslog - how to remove
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
11-21-2006 03:21 PM
11-21-2006 03:21 PM
ftpd message in syslog - how to remove
The syslog keeps getting the following message
FTP server (Revision 1.1 Version wuftpd-2.
6.1(PHNE_34306) Mon Mar 13 11:15:29 GMT 2006) ready.
Everytime when there has a ftp connection establish, the above msg appear in the syslog. The following is the ftpd line in the /etc/inetd.conf.
ftp stream tcp6 nowait root /usr/lbin/ftpd ftpd -u 002
I have no idea how to stop this message, can someone give me some hints?
Thanks,
Simon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 07:42 PM
11-21-2006 07:42 PM
Re: ftpd message in syslog - how to remove
what does your /etc/syslog.conf file look like?
Have you tried changing to:
*.info;mail.none;local5.none /var/adm/syslog/syslog.log
local5.info /var/adm/syslog/ftp.log
See syslogd(1m) and syslog(3C)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 10:06 PM
11-21-2006 10:06 PM
Re: ftpd message in syslog - how to remove
You can look at inetd.conf and disable enhanced logging.
However, SOX requires logging of system access and you may have audit problems if you take this step.
Good Luck,
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 01:45 AM
11-22-2006 01:45 AM
Re: ftpd message in syslog - how to remove
*.info;mail.none;local5.none /var/adm/syslog/syslog.log
local5.info /var/adm/syslog/ftp.log
The facility local5 is what ftpd uses for syslog messages. NOTE: syslog.conf does not allow spaces! Use tabs only. To remove a logging facility from syslog.log, you add the .none directive to the syslog.log line (as above).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 06:40 PM
11-22-2006 06:40 PM
Re: ftpd message in syslog - how to remove
Hi,
Append this word against 'syslog' entry in your '/etc/syslog.conf' file and restart the 'syslogd' .
ftp.none
It should read something like this
*.info;mail.none;ftp.none /var/adm/syslog/syslog.log
BR
Vasu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2006 05:58 PM
11-23-2006 05:58 PM
Re: ftpd message in syslog - how to remove
Just check for -l entry in your /etc/inetd.conf Remove the entry if any
And then run inetd -c to re-read the configuration file.