Installing software on a large number of Systems


 
Thread Tools Search this Thread
Operating Systems AIX Installing software on a large number of Systems
# 1  
Old 04-11-2005
Installing software on a large number of Systems

Hi,

I'm new to the unix world and I would like to know if anyone can give me some pointers as to how to install and run a program on a large number of servers easily. Can anyone offer any pointers please?

F.y.i I have developed a program in C to collect performance data from AIX systems. Installing and collecting on a single system is easy but doing it over 500 systems is a different ball game altogether.

Any suggestions would be appreciated.

Cheers



Stuart
# 2  
Old 04-20-2005
for the solaris environment at work, some smart people have created a parallel deployment program where you only need to supply some parameters to it and a host list and it does the "manual" install at the listed hosts ...

however --- if you don't have one of those yet --- and you have remote root access to the 500 systems you're referring to , you can always just loop through a host list and install your program manually ... (solaris example below) ...
Code:
for host in `< host.list`
do
    ssh $host "hostname; cd /mypkg/dir; pkgadd -d ."
done

Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Installing software

Greetings, all. I'm a newcomer here, and I appreciate the forum to ask questions. Here is the situation: I am installing software on a network hard-drive (NAS), to add functionality to it. The OS is in a read-only flash partition. Someone else hacked the firmware to install Busybox on this... (1 Reply)
Discussion started by: jhansen
1 Replies

2. UNIX for Dummies Questions & Answers

Installing Software

Hi all, So I remotly log on to one of the unix boxes we have at work. I want to use a software that is not installed on the server. What's better? to install it locally in my home folder and use it, or to ask the system admin to install it on the server? and what's the main difference? I asuume... (1 Reply)
Discussion started by: Rachel Ross
1 Replies

3. SuSE

installing software

hi, i have installed suse linux (10) at my home. can anyone tell me how do i install the softwares like players , messengers etc. i am new to linux ,i am learning now. can anyone suggest or post any material so that i can easily go through and learn. thanks in advance. vishwa. (6 Replies)
Discussion started by: viswareddy.32
6 Replies

4. UNIX for Dummies Questions & Answers

Installing Software on Multiple Systems

I have been given the task of installing subversion on rhe4 32 and 64 bit, suse9 ia64, hpux 11.22 ia64, hpux 11.11 pa_risc, solaris 2.8 sparc, and irix 6.5. How can I do this? I know that rhe5 and debian have things like yum and apt for packages. What are the equivalents for these systems? ... (4 Replies)
Discussion started by: ldb88
4 Replies

5. Solaris

Installing SNMP Agent on Solaris Systems

Hi, I am trying to apply the steps in the below link: http://manageengine.adventnet.com/products/applications_manager/help/appendix/snmp-agent-discovery.html#solaris but I couldn't continue with the step number 2 ... what is the path of C compiler. export PATH=<gcc path>:$PATH ... (3 Replies)
Discussion started by: adel8483
3 Replies

6. UNIX for Dummies Questions & Answers

Backup Software for UNIX systems

Hi, which software is recommended for backup of UNIX systems ( e.g. SUN, Solaris ). Backup software and database e.g. Oracle. One possibility is Networker, but license is expensive and also service contract. Best regards Dieter (2 Replies)
Discussion started by: rhacodactylus
2 Replies

7. UNIX Desktop Questions & Answers

installing new software

Hello, I recently downloaded and installed fedora core 3, and I am triyng to install other software like movie players and so on, when ever I download software for this operating system, I recieve with the software a text file explaining how to install it. The installation instrucions are allways... (1 Reply)
Discussion started by: st_matan
1 Replies
Login or Register to Ask a Question