Sponsored Content
Operating Systems Linux Red Hat Log Redirection to Remote Host Post 302742021 by moshesa on Monday 10th of December 2012 11:28:17 AM
Old 12-10-2012
Log Redirection to Remote Host

hey,

I need your help.

I have a rhel server that runs application, that application writing to her local application log.

I want that log will be realtime copying to a another remote rhel server.

The thing is that I prohibited touch the application code.


Is that possible?


Thanks
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to specify the remote host?

Hi, I want to compare 2 set of dierectories, one is current host, other in remote, I am tring like this: diff $HOSTTOBACKUPH:$SOURCEHR $DR_BACKUP_DIR_H/hourly.0 I am getting fowlling error> diff: ctlrws123:/home/arbuser/temp2/mscdr/sor_d: No such file or directory how to specify the... (2 Replies)
Discussion started by: redlotus72
2 Replies

2. Solaris

How to delete the files from local host to remote host

Hi all, i am copying .gz files from production server to development server using "scp" command.my requirement is after copying .gz files i want to delete old .gz files(two days back) in development server from production server. like this way i need to delelte .log ,.z and .dmp files... (3 Replies)
Discussion started by: krishna176
3 Replies

3. Shell Programming and Scripting

Reading from Remote Host

Hi I have a different architecture for my perl application. I have apache one server and data on another(not database). i need to read the data from other machine and that too securely. Also opening ports on apache machine is also restricted. Can anyone help me on this (2 Replies)
Discussion started by: Aditya_IT
2 Replies

4. Shell Programming and Scripting

Remote server file output redirection

Hi, I want ssh to the remote server and then execute ls and redirect the output to the file in remote server itself like ssh root@$server `ls /var/log/users.txt > root@$server:/home/users.txt` Can you please let me know the correct syntax for it. Thanks in advance (2 Replies)
Discussion started by: mohitmoudgil
2 Replies

5. Shell Programming and Scripting

ssh to a remote host

i want a script with expect or perl or shell which will do ssh to remote host...it will take commandline argument and run the script in remote host....... i.e that will be like ./ssh.exp remoteip username passwd /tmp.kk.sh can someone help me on this? (1 Reply)
Discussion started by: Aditya.Gurgaon
1 Replies

6. Shell Programming and Scripting

Run a shell script from one host which connext to remote host and run the commands

I want to write a script which would run from one host say A and connect to other remote host B and then run rest of commands in that host. I tried connecting from A host to B with SSH but after connecting to host B it just getting me inside Host B command prompt. Rest of the script is not running... (6 Replies)
Discussion started by: SN2009
6 Replies

7. Shell Programming and Scripting

running commands to remote host from centralized host

Gurus/Experts We have a centralized UNIX/Solaris server from where we can actually ssh to all other UNIX/Solaris servers...I need to write a script that reside on this centerlized server and do FileSystem monitoring (basically run df -h or -k) of other remote servers and then send an email to me... (6 Replies)
Discussion started by: anjum.suri
6 Replies

8. UNIX for Advanced & Expert Users

Help! How to find the local host after few ssh hops to remote host???

I do a ssh to remote host(A1) from local host(L1). I then ssh to another remote(A2) from A1. When I do a who -m from A2, I see the "connected from" as "A1". => who -m userid pts/2 2010-03-27 08:47 (A1) I want to identify who is the local host who initiated the connection to... (3 Replies)
Discussion started by: gomes1333
3 Replies

9. Shell Programming and Scripting

Pause processes in remote host and resume execution in another remote host

Hi, Given addresses of 2 remote machines, using a shell script is it possible to get the state of running processes in "src" stop all the processes in "src" exit out of "src" ssh into "dest" resume the state of executing processes captured in step 1 in "dest" Assumption: "src" is... (3 Replies)
Discussion started by: Saeya Darsan
3 Replies

10. Shell Programming and Scripting

Check/get the exit status of a remote command executed on remote host through script

Geeks, Could you please help me out in my script and identify the missing piece. I need to check/get the exit status of a remote command executed on remote host through script and send out an email when process/processes is/are not running on any/all server(s). Here's the complete... (5 Replies)
Discussion started by: lovesaikrishna
5 Replies
cfg_connect(3)						     Library Functions Manual						    cfg_connect(3)

NAME
cfg_connect - Connect to the configuration management server on a remote host LIBRARY
Configuration Management Library (libcfg.a) SYNOPSIS
#include <cfg.h> cfg_status_t cfg_connect( caddr_t host, cfg_handle_t *handle, unsigned int flags); PARAMETERS
Specifies the name of the host system to be configured. Returns a connection handle that you use in other calls to the configuration man- agement library. This handle is a structure that identifies the means of communication between your application and the configuration man- agement server. Specifies options to the connection. Currently, one option is supported. CFG_FLAG_VERBOSE requests that the system dis- play status information to the application user during the processing of routines in the configuration management library. This flag is normally used only for debugging your application. DESCRIPTION
Before your application can perform operations on remote kernel subsystems, it must call the cfg_connect() routine. This routine invokes the configuration management server and establishes a socket connection between the server and your application. The routine returns the handle parameter, which identifies the socket connection between your application and the remote configuration management server. You must pass the handle in calls to other libcfg routines. For local operations, you need not establish a connection to the configuration management server, so you do not need to call the cfg_con- nect() routine. EXAMPLES
The following example illustrates the use of the cfg_connect() library routine: cfg_status_t retval; cfg_handle_t handle; retval = cfg_connect("madmax", &handle, 0); if (retval != CFG_SUCCESS) print_error(retval); In this example, the cfg_connect() call attempts to establish a connection between your application and the configuration management server on host madmax. If successful, the call returns data describing how your application will communicate with the configuration management server. If the return value is not CFG_SUCCESS, the application calls the print_error routine, which displays an error message. (The print_error routine is not part of the libcfg library. For an example of this routine, see libcfg(3).) RETURN VALUES
Upon successful completion, cfg_connect() returns CFG_SUCCESS. Other return values indicate that an error has occurred. For information about handling return values from routines in the configuration management library, see libcfg(3). RELATED INFORMATION
Commands: cfgmgr(8), sysconfig(8) Routines: cfg_disconnect(3), libcfg(3) delim off cfg_connect(3)
All times are GMT -4. The time now is 09:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy