in reply to Re: Updating files over multiple servers
in thread Updating files over multiple servers
So if I have to duplicate everything to the other servers so that no matter which server the load balancer puts the users on, they have that data available to them, how do I use Perl to Open those files, since they are not on the same server.open(FI,">>/home/path/to/file.txt") or die "Oops file failed: $!"; seek(FI, 0, 2); print FI "username /specific/path /something else\n"; close(FI);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Updating files over multiple servers
by regexes (Hermit) on Sep 27, 2007 at 07:03 UTC |