Syslog Messages from Remote Server are not writing to Log File Anymore


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Syslog Messages from Remote Server are not writing to Log File Anymore
# 8  
Old 09-27-2014
Quote:
Originally Posted by mrm5102
But that's good to know. I assume you could use that for most daemons that are running?
Absolutely. Whenever you want to delete a file which might be written to by a running process instead of "rm file" use

Code:
cat /dev/null > /path/to/file

which will shorten it to 0 bytes length but retain the inode. The result is the same file with its contents removed instead of a new file with the same name as the old one.

If a program honors a signal depends on how it was written. "Well-behaving" programs (that is: ones which are written like Unix programs are meant to be written) do so, but not every programmer adheres to some informal standard. You will have to find out for every specific program yourself if it is the case or not.

I hope this helps.

bakunin
# 9  
Old 09-27-2014
Quote:
Originally Posted by bakunin
. . . With sending a signal to the process you tell it to "start over": re-read its configuration files, open the necessary files anew, etc., similar to stopping and restarting it, but without the actual program stop and program start.
. . .
Being a bit nit-picky: It's not sending "a" signal, but it needs to be THE signal that has been reserved for that function. This is dependent on what the programmer felt like; usually it is mentioned in the man page. Different signals can serve for different functions.
# 10  
Old 09-27-2014
Quote:
Originally Posted by RudiC
It's not sending "a" signal, but it needs to be THE signal that has been reserved for that function.
You are right, my bad. I intended to write "such a signal", but skipped a word. Thanks for correcting that.

bakunin
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script connect to remote server, not find files and exit only from remote server, but not from scrip

I have a script, which connecting to remote server and first checks, if the files are there by timestamp. If not I want the script exit without error. Below is a code TARFILE=${NAME}.tar TARGZFILE=${NAME}.tar.gz ssh ${DESTSERVNAME} 'cd /export/home/iciprod/download/let/monthly;... (3 Replies)
Discussion started by: digioleg54
3 Replies

2. Shell Programming and Scripting

How to Append the output of a script running in remote server to a file in local server?

Hi guys, So i am in server1 and i have to login to server 2, 3,4 and run some script there(logging script) and output its result. What i am doing is running the script in server2 and outputting it to a file in server 2 and then Scp'ing the file to server1. Similarly i am doing this for other... (5 Replies)
Discussion started by: srkmish
5 Replies

3. Linux

How to push Tomcat logs to remote syslog server?

I found a script for automatically push tomcat logs to syslog server which is locate in same server. How do I change it to push logs to remote server? log4j.rootLogger=INFO, WARN, console, file, SYSLOG log4j.appender.file=org.apache.log4j.RollingFileAppender log4j.appender.file.append=true... (2 Replies)
Discussion started by: heshandh
2 Replies

4. UNIX for Dummies Questions & Answers

[Solved] syslog not accepting remote messages?

Hi, I created central syslog server, but it's not accepting the messages from remote. Not sure why I can't start the service with -r options? Please help. # service syslog restart Shutting down kernel logger: Shutting down system logger: ... (1 Reply)
Discussion started by: samnyc
1 Replies

5. Shell Programming and Scripting

Continuous log file transfer to remote server

I have several production servers and 1 offline server. Production server continuously generates new log files for my application. Depending on time of day new files may be generated every few seconds and at other times every few hours. I also have an offline server where I would like to pull log... (3 Replies)
Discussion started by: yoda9691
3 Replies

6. UNIX for Advanced & Expert Users

Forwarding syslog msgs to remote server non standard port

Hello Forumers! Has anyone successfully implemented forwarding of syslog messages to a remote server which is listening on a port other than udp514? Thanks! (3 Replies)
Discussion started by: bluescreen
3 Replies

7. Shell Programming and Scripting

Writing to remote file

hello All, I have the login name and pasword. I want to know how to use this info and open a file and write to it. Ex: login: expr pasword: xxxx file: /expr/tmp.txt I know how to use ftp (use Net::FTP) and upload files but I want to know how to write to a file. Thanks, (4 Replies)
Discussion started by: rimser9
4 Replies

8. UNIX for Advanced & Expert Users

writing the log file into syslog

Hi, we are trying to enable auditing for few oracle 9i database. and right now it writies into adump directory. As adump can be read/write by oracle user so could it be possible to write into syslog while oracle keeps writing to adump . thanks in advance. Pk (2 Replies)
Discussion started by: p4cldba
2 Replies

9. HP-UX

How to Redirect the error messages from Syslog file to our own Application Log File

Hello, I am New to Unix. I am Using HP-UX 9000 Series for my Application. I am Currently Facing an Issue that the error messages are being written in the syslog file instead of the Application Log File. The Codes for that Syslog.h is written in Pro*C. I want to know how to Redirect these... (3 Replies)
Discussion started by: balasubramaniam
3 Replies
Login or Register to Ask a Question