Re: How do I set up bidirectional pipes over a network connection?

2003-12-10 Thread drieux
On Dec 10, 2003, at 5:54 AM, Dan Anderson wrote: [..] Actually, that's a good idea too. Thanks for your suggestions! -Dan while I like the NFS idea, you might want to look into the idea of a SAN/NAS device that is already hardened with fail over CPU's, etc, etc, etc... then as long as you keep al

Re: How do I set up bidirectional pipes over a network connection?

2003-12-10 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Dan Anderson) writes: >I'm writing a perl daemon to do two things: back up important files on >multiple boxen so if one gets taken out another will survive, and sync >files in users directory from a main server -- i.e. I want to be able to >do som

Re: How do I set up bidirectional pipes over a network connection?

2003-12-10 Thread Dan Anderson
On Tue, 2003-12-09 at 20:38, John W. Krahn wrote: > Dan Anderson wrote: > > > > On Tue, 2003-12-09 at 16:31, James Edward Gray II wrote: > > > On Dec 9, 2003, at 3:19 PM, Dan Anderson wrote: > > > > > > > I have 2 Linux boxes I want to talk to each other over the local > > > > network > > > > usin

Re: How do I set up bidirectional pipes over a network connection?

2003-12-10 Thread Dan Anderson
On Tue, 2003-12-09 at 17:41, James Edward Gray II wrote: > On Dec 9, 2003, at 4:12 PM, Dan Anderson wrote: > > > Well, I was planning to implement the file transfers using Net::FTP or > > something similar to keep the problems down. But I want every node to > > be able to talk to other nodes, i.e

Re: How do I set up bidirectional pipes over a network connection?

2003-12-09 Thread John W. Krahn
Dan Anderson wrote: > > On Tue, 2003-12-09 at 16:31, James Edward Gray II wrote: > > On Dec 9, 2003, at 3:19 PM, Dan Anderson wrote: > > > > > I have 2 Linux boxes I want to talk to each other over the local > > > network > > > using a Perl script. Is it possible to set up a bidirectional pipe so

Re: How do I set up bidirectional pipes over a network connection?

2003-12-09 Thread James Edward Gray II
On Dec 9, 2003, at 4:12 PM, Dan Anderson wrote: Well, I was planning to implement the file transfers using Net::FTP or something similar to keep the problems down. But I want every node to be able to talk to other nodes, i.e. each node be able to send every other node a request to download a file

Re: How do I set up bidirectional pipes over a network connection?

2003-12-09 Thread Wiggins d Anconia
> > How many boxes are we talking about here? > > Well starting off, 2. But I would like to expand to several more. > Probably never more then 10. > > > What you're talking about is no small feat. How can we help you? > > > > You want a server and a client, right? Could it be and FTP serve

Re: How do I set up bidirectional pipes over a network connection?

2003-12-09 Thread Dan Anderson
> How many boxes are we talking about here? Well starting off, 2. But I would like to expand to several more. Probably never more then 10. > What you're talking about is no small feat. How can we help you? > > You want a server and a client, right? Could it be and FTP server and > a script

Re: How do I set up bidirectional pipes over a network connection?

2003-12-09 Thread James Edward Gray II
On Dec 9, 2003, at 3:40 PM, Dan Anderson wrote: On Tue, 2003-12-09 at 16:31, James Edward Gray II wrote: On Dec 9, 2003, at 3:19 PM, Dan Anderson wrote: I have 2 Linux boxes I want to talk to each other over the local network using a Perl script. Is it possible to set up a bidirectional pipe so

Re: How do I set up bidirectional pipes over a network connection ?

2003-12-09 Thread James Edward Gray II
On Dec 9, 2003, at 3:49 PM, Dan Anderson wrote: You might look at the standard rdist(1) utility for this kind of thing. For crafting network daemons in Perl, Net::Daemon is a good place to start, IMO. What I am trying to do is too complex to successfully implement using a standard utility like

RE: How do I set up bidirectional pipes over a network connection ?

2003-12-09 Thread Dan Anderson
> You might look at the standard rdist(1) utility for this kind of thing. > > For crafting network daemons in Perl, Net::Daemon is a good place to start, > IMO. What I am trying to do is too complex to successfully implement using a standard utility like rdist or CVS. Besides, rolling my own is

RE: How do I set up bidirectional pipes over a network connection ?

2003-12-09 Thread Bob Showalter
Dan Anderson wrote: > On Tue, 2003-12-09 at 16:31, James Edward Gray II wrote: > > On Dec 9, 2003, at 3:19 PM, Dan Anderson wrote: > > > > > I have 2 Linux boxes I want to talk to each other over the local > > > network using a Perl script. Is it possible to set up a > > > bidirectional pipe so t

Re: How do I set up bidirectional pipes over a network connection?

2003-12-09 Thread Dan Anderson
On Tue, 2003-12-09 at 16:31, James Edward Gray II wrote: > On Dec 9, 2003, at 3:19 PM, Dan Anderson wrote: > > > I have 2 Linux boxes I want to talk to each other over the local > > network > > using a Perl script. Is it possible to set up a bidirectional pipe so > > that 2 perl daemons can comm

Re: How do I set up bidirectional pipes over a network connection?

2003-12-09 Thread James Edward Gray II
On Dec 9, 2003, at 3:19 PM, Dan Anderson wrote: I have 2 Linux boxes I want to talk to each other over the local network using a Perl script. Is it possible to set up a bidirectional pipe so that 2 perl daemons can communicate with each other? How would I go about doing this and are there any m

RE: How do I set up bidirectional pipes over a network connection?

2003-12-09 Thread Tim Johnson
Beginners Subject: How do I set up bidirectional pipes over a network connection? I have 2 Linux boxes I want to talk to each other over the local network using a Perl script. Is it possible to set up a bidirectional pipe so that 2 perl daemons can communicate with each other? How would I go about doin

How do I set up bidirectional pipes over a network connection?

2003-12-09 Thread Dan Anderson
I have 2 Linux boxes I want to talk to each other over the local network using a Perl script. Is it possible to set up a bidirectional pipe so that 2 perl daemons can communicate with each other? How would I go about doing this and are there any modules to help? Thanks in advance, Dan -- To

Re: Bidirectional pipes

2003-09-02 Thread Mehmet . Ekici
Hi, I have already using DBI module, I just wanted to explain with an example. Let think that I want to be root user and issue some command in that case I also need bidirectional pipes. su - root Password execute some commands here . Mehmet

Re: Bidirectional pipes

2003-09-02 Thread Sudarshan Raghavan
Subject: Re: Bidirectional pipes

Re: Bidirectional pipes

2003-09-02 Thread Mehmet . Ekici
reless.com> cc: Subject: Re: Bidirectional pipes

Re: Bidirectional pipes

2003-09-02 Thread Sudarshan Raghavan
[EMAIL PROTECTED] wrote: Hi all, I wonder how can I open pipe to STDIN and STDOUT of a process ? perldoc IPC::Open2 If you need a handle to STDERR perldoc IPC::Open3 Tnx. Mehmet -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Bidirectional pipes

2003-09-02 Thread Mehmet . Ekici
Hi all, I wonder how can I open pipe to STDIN and STDOUT of a process ? Tnx. Mehmet -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]