Sponsored Content
Operating Systems AIX Automate patch download & deployment Post 302947586 by bakunin on Friday 19th of June 2015 05:28:15 AM
Old 06-19-2015
Quote:
Originally Posted by pawpaw
For this case can I assume the NIM+Endpoint acts like a satellite server?
If you define "acts like" losely enough: yes.

Quote:
Originally Posted by pawpaw
Seems like product from lumension (Patch and Remediation) can do similar stuff.

Are there any other products out there? I am tasked to do an evaluation on the various products.
With 30-50 LPARs, like you said above, you should definitely have a NIM-Server anyways. NIM-Servers are not only helpful in software deployment but also for configuration management, installation of new systems, systems backup, system recovery and the like.

The big exception being a heavily firewalled environment: this is where NIM servers really suck, because they need an awful lot of ports and most firewall people are reluctant to tear so many big holes into their firewall. I remember working once in a shop where you couldn't even "ping" the default gateway. One needed to get special permission to even use ping to test the failover node on a cluster. NIM was not used there.

If you do not have such a paranoid environment (and, frankly, i do not wish anybody to undergo such a torture) i strongly suggest to set up a NIM server and make all your LPARs NIM clients. It is quite easy to do, a matter of maybe 3-4 hours, all in all, to set up the basic structures and the resources needed most.

I hope this helps.

bakunin

Last edited by bakunin; 06-19-2015 at 08:20 AM..
 

8 More Discussions You Might Find Interesting

1. IP Networking

Patch-o-matic (patch for iptable) for linux2.4.08 & iptable1.2.7a

Hello friends I'm running Redhat 9.0 with linux kernel 2.4.20-8 & have iptables version 1.2.7a & encountering a problem that I narrate down. I need to apply patch to my iptable and netfilter for connection tracking and load balancing that are available in patch-o-matic distribution by netfilter.... (0 Replies)
Discussion started by: Rakesh Ranjan
0 Replies

2. Solaris

Download patch cluster

Does anyone have an alternate site to download J2SE Solaris Recommended Patch Cluster for Solaris 8. Sun does not let me download the patches unless I have a support contract. I do not. Our software is legal, but our support contract wore out. I need this patchset to avoid downloading 30... (6 Replies)
Discussion started by: hshapiro
6 Replies

3. UNIX for Dummies Questions & Answers

What UNIX is best for an all-in-one-server deployment

Heya, my university department wants to deploy a UNIX based system instead of various unnetokred windows PCs. We are trying to build a terminal server solution on either FreeBSD,Solaris or Debian Linux. The system would mostly run office applications on X11 and file sharing (with Samba). In... (4 Replies)
Discussion started by: masterfreek64
4 Replies

4. Solaris

problem installing "download only" patch

Hi guys, can you help me solve this trouble? TNX! root@TRaNCe(/var/sadm/spool) # patchadd /var/sadm/spool/121431-36.jar Validating patches... Loading patches installed on the system... Done! Loading patches requested to install. Done! Checking patches that you specified for... (2 Replies)
Discussion started by: static
2 Replies

5. UNIX for Dummies Questions & Answers

Download & install JDK 1.6

Hi.. I want to download & install JDK 1.6 for linux so please help me where i can downlod it free Regards Rinku Garg (1 Reply)
Discussion started by: rinkugarg
1 Replies

6. Shell Programming and Scripting

Download AT&T ksh88 ?

Hello, I need ksh88 for my linux system - and I don't want pdksh. Possible to get original ksh 88 binaries or source ? (I don't need ksh93 which is available) thanks Vilius (1 Reply)
Discussion started by: vilius
1 Replies

7. Shell Programming and Scripting

Application Deployment Script

Hi, I need to develop a script which will deploy my web application binary(.war) file in the jboss application server. I also need to take the back up of the existing binary file and rename the same with current date and then deploy the new binary from my specified location. The same... (1 Reply)
Discussion started by: Siddheshk
1 Replies

8. Solaris

Solaris 10 download & md5sum

Hi, I download Full DVD Image (zip): Oracle Solaris 10 (SPARC) (2,079,737,380 bytes) (md5sum: 3a24f5746ebab5f254c359f979e644f7) I have also downloaded md5sum.exe from the following site bt.etree.org | Community Tracker when i run the md5sum it show, D:\Solaris... (6 Replies)
Discussion started by: beginningDBA
6 Replies
SHELL-QUOTE(1)						User Contributed Perl Documentation					    SHELL-QUOTE(1)

NAME
shell-quote - quote arguments for safe use, unmodified in a shell command SYNOPSIS
shell-quote [switch]... arg... DESCRIPTION
shell-quote lets you pass arbitrary strings through the shell so that they won't be changed by the shell. This lets you process commands or files with embedded white space or shell globbing characters safely. Here are a few examples. EXAMPLES
ssh preserving args When running a remote command with ssh, ssh doesn't preserve the separate arguments it receives. It just joins them with spaces and passes them to "$SHELL -c". This doesn't work as intended: ssh host touch 'hi there' # fails It creates 2 files, hi and there. Instead, do this: cmd=`shell-quote touch 'hi there'` ssh host "$cmd" This gives you just 1 file, hi there. process find output It's not ordinarily possible to process an arbitrary list of files output by find with a shell script. Anything you put in $IFS to split up the output could legitimately be in a file's name. Here's how you can do it using shell-quote: eval set -- `find -type f -print0 | xargs -0 shell-quote --` debug shell scripts shell-quote is better than echo for debugging shell scripts. debug() { [ -z "$debug" ] || shell-quote "debug:" "$@" } With echo you can't tell the difference between "debug 'foo bar'" and "debug foo bar", but with shell-quote you can. save a command for later shell-quote can be used to build up a shell command to run later. Say you want the user to be able to give you switches for a command you're going to run. If you don't want the switches to be re-evaluated by the shell (which is usually a good idea, else there are things the user can't pass through), you can do something like this: user_switches= while [ $# != 0 ] do case x$1 in x--pass-through) [ $# -gt 1 ] || die "need an argument for $1" user_switches="$user_switches "`shell-quote -- "$2"` shift;; # process other switches esac shift done # later eval "shell-quote some-command $user_switches my args" OPTIONS
--debug Turn debugging on. --help Show the usage message and die. --version Show the version number and exit. AVAILABILITY
The code is licensed under the GNU GPL. Check http://www.argon.org/~roderick/ or CPAN for updated versions. AUTHOR
Roderick Schertler <roderick@argon.org> perl v5.16.3 2010-06-11 SHELL-QUOTE(1)
All times are GMT -4. The time now is 06:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy