Ask a Question related to Linux / Unix Administration, Design and Development.
-
Jan Fader #1
Multi-Server-Terminal Access Tool
Hi Folks,
I have to administrate a group of 20 AIX4.3.3.0 Workstation.
I need a tool who "spread" my commands which I type in one shell using
ssh to all the ppcs I want at the same time.
I know I can do this like
for i in 3 4 5 6
do
ssh ppc"$i" -T <command>
done
But with this solution I can't respond on a error on a single
workstation.
I have tried pconsole and clusterssh. Both doesn't work on my ppcs.
Any other suggestion? Tools,Skripts, whatever
With kindly regards and TIA
Jan Fader
Jan Fader Guest
-
can an extension in dw access Terminal in osX?
That's about it- wondering if you can launch a script in Terminal. Better, pass the script values from a Dw panel. bigger picture- want to make... -
Win2003 Terminal Server-client access problems
I am running Windows2003 server with Terminal Server installed. I have an application on the server which I want clients to access (use) through... -
Terminal Server connection to 2003 Server
Hi, I am running 2 x Terminal Servers with WinNT 4 with MF 1.8. They are both authenticating on a 2003 Server, and pulling policy & profiles... -
Cannot connect to Terminal Server via Terminal Services Manager after upgrade to Windows Server 2003
The following error is displayed in the Terminal Services Manager on our domain controller (DC-01) when trying to connect to Terminal Services on... -
terminal server
When I create any user, by default they can connect to the terminal server. I would like to restrict to use terminal server for some user. I can do... -
mark taylor #2
Re: Multi-Server-Terminal Access Tool
> for i in 3 4 5 6
for i in 3 4 5 6> do
> ssh ppc"$i" -T <command>
> done
do
if ! ssh ppc"$i" -T <command>
then
echo "Error running <command> on ppc${i}"
fi
done
Should work ok...
Rgds
Mark Taylor
mark taylor Guest
-
Jan Fader #3
Re: Multi-Server-Terminal Access Tool
>> for i in 3 4 5 6
My error is not in the connection to the host. It's in the <command>>>> do
>> ssh ppc"$i" -T <command>
>> done
> for i in 3 4 5 6
> do
> if ! ssh ppc"$i" -T <command>
> then
> echo "Error running <command> on ppc${i}"
> fi
> done
>
--
Jan Fader
11. Inform. Ing der NTA-Isny ([url]http://webserver.fh-isny.de/info11[/url])
B.I.f.H (Bastard Informatic from Hell)
AIM: kragul83
ICQ# 204 982 370
Jan Fader Guest
-
Doug Freyburger #4
Re: Multi-Server-Terminal Access Tool
mark taylor wrote:
Shoudla-woulda-coulda. It actually returns the status of the>
> for i in 3 4 5 6
> do
> if ! ssh ppc"$i" -T <command>
> then
> echo "Error running <command> on ppc${i}"
> fi
> done
>
> Should work ok...
connection. As long as the remote command runs it will
return 0:
$ ssh hosta exit 0
dfreybu@hosta's password:
$ echo $#
0
$ ssh hosta exit 1
dfreybu@hosta's password:
$ echo $#
0
$
Doug Freyburger Guest



Reply With Quote

