Sponsored Content
Full Discussion: Error with new NIM SPOT
Operating Systems AIX Error with new NIM SPOT Post 302617687 by newaix on Tuesday 3rd of April 2012 04:12:32 AM
Old 04-03-2012
Hi Kahna000,

Thanks for the response.

1. Level of SPOT

Code:
#lsnim -l spot_aix53 |grep oslevel
oslevel_r = 5300-07

2. Level of resource.

Code:
# lsnim -l mksysb_CAT
mksysb_CAT:
class = resources
type = mksysb
Rstate = ready for use
prev_state = unavailable for use
location = /nim/mksysb/mksysb_CAT
version = 5
release = 3
mod = 7
oslevel_r = 5300-07
alloc_count = 0
server = master

3.But NIM client server version is 5.3.10

Code:
CAT(root)/home/root # oslevel -s
5300-10-02-0943

I think i have to redefine the resource again after upgrading the SPOT.But as per your instruction on my another thread i have to upgrdate lpp_resource first. But there are other servers actually running with 5.3.7 . So i have to create 2 lpp_resources and 2 spots for nim clients running with 5.3.7 and 5.3.10 .

How can i proceed.

Regards
newaix

Last edited by zaxxon; 04-04-2012 at 05:21 AM.. Reason: code tags
 

10 More Discussions You Might Find Interesting

1. AIX

migrate NIM server through NIM installation

I try to migrate a NIM server from one server to another. I try to do a mksysb on NIM server restore the NIM server's mksysb to a client through NIM installation shutdown NIM server start newly installed client as NIM server Does anyone do this before? who can give me some suggestion? (1 Reply)
Discussion started by: yanzhang
1 Replies

2. AIX

nim mksysb error :/usr/bin/savevg[33]: 1016,07: syntax error

-------------------------------------------------------------------------------- Hello, help me please. I am trying to create a mksysb bakup using nim. I am geting this error, how to correct it ? : Command : failed stdout: yes stderr: no... (9 Replies)
Discussion started by: astjen
9 Replies

3. AIX

help with NIM backup error

Hello all.... I am trying to backup a client from the NIM master. While doing so, I get this error: backup: 0511-089 can not open /tmp/6282.mnt0/<hostname>_mksysb_<date> 0042-001 m_mkbosi: processing error encountered on client 0042-001 m_mkbosi: processing error encountered on master... (0 Replies)
Discussion started by: solaix14
0 Replies

4. AIX

Back up a client NIM from nim master

Hello everyone Im trying to backup a nim client from nim master but I got this message COMMAND STATUS Command: failed stdout: yes stderr: no Before command completion, additional instructions may appear below. 0042-001 nim:... (2 Replies)
Discussion started by: lo-lp-kl
2 Replies

5. AIX

Nim error

When I do the perform operation on machines and select mksysb for my client, I get following error 0042-229 m_bos_inst: When installing a system using mksysb as the source for the installation, the level of the SPOT used for the installation must match the level of the mksysb image that is... (5 Replies)
Discussion started by: vjm
5 Replies

6. AIX

Nim Error

When I am running following command to take mksysb backup I am getting error as below: nim -o define -t mksysb -a server=master \ -a location=/nim/mksysb/client1_bkup_mksysb -a source=client1_bkup \ -a mk_image=yes -a mksysb_flags='e' client1_bkup_mksysb Here my nim client name is :... (1 Reply)
Discussion started by: SiddhV
1 Replies

7. AIX

NIM SPOT query

Dear Admins, The SPOT defined in NIM is for aix 5.3 TL 7 . Some of the NIM clients are upgraded to TL 10 . Now the SPOT level is older than the mksysb level. This will cause problem during restoration of any NIM clients. Now i want to upgrade SPOT level to TL 10 and redefine the resources... (3 Replies)
Discussion started by: newaix
3 Replies

8. AIX

Creating NIM SPOT using an existing mksysb from cliet

Hi, i backed up a test LPAR using mksyb utility on AIX. and transferred it to NIM server via NFS. I want to create a SPOT using this mksysb . Please explain me the procedure. And got something online, but that procedure is different. Please respond. (5 Replies)
Discussion started by: System Admin 77
5 Replies

9. Shell Programming and Scripting

Spot error with my awk command

can any one identify why this command keeps resulting in 1, even though the string i'm searching for actually does not exist in the log? awk 'BEGIN{count++} NR>220 && NR<=223 && /error/ && !/No.*such.*file.*or.*direfctory/ { count++ } END { print count }' /var/log/mail.log i expected it to... (2 Replies)
Discussion started by: SkySmart
2 Replies

10. AIX

Problem in communication nim client with nim master

Hello, I have an AIX6.1 machine which is a nim client to my nim master which is also AIX6.1 machine. I had some problem to perform an installation on my client using smit nim . i removed /etc/niminfo file in order to do the initialization again but when i run the command niminit -a name=client... (0 Replies)
Discussion started by: omonoiatis9
0 Replies
ttk_image(n)							 Tk Themed Widget						      ttk_image(n)

__________________________________________________________________________________________________________________________________________________

NAME
ttk_image - Define an element based on an image SYNOPSIS
ttk::style element create name image imageSpec ?options? _________________________________________________________________ DESCRIPTION
The image element factory creates a new element in the current theme whose visual appearance is determined by Tk images. imageSpec is a list of one or more elements. The first element is the default image name. The rest of the list is a sequence of statespec / value pairs specifying other images to use when the element is in a particular state or combination of states. OPTIONS
Valid options are: -border padding padding is a list of up to four integers, specifying the left, top, right, and bottom borders, respectively. See IMAGE STRETCHING, below. -height height Specifies a minimum height for the element. If less than zero, the base image's height is used as a default. -padding padding Specifies the element's interior padding. Defaults to -border if not specified. -sticky spec Specifies how the image is placed within the final parcel. spec contains zero or more characters "n", "s", "w", or "e". -width width Specifies a minimum width for the element. If less than zero, the base image's width is used as a default. IMAGE STRETCHING
If the element's allocated parcel is larger than the image, the image will be placed in the parcel based on the -sticky option. If the image needs to stretch horizontally (i.e., -sticky ew) or vertically (-sticky ns), subregions of the image are replicated to fill the par- cel based on the -border option. The -border divides the image into 9 regions: four fixed corners, top and left edges (which may be tiled horizontally), left and right edges (which may be tiled vertically), and the central area (which may be tiled in both directions). EXAMPLE
set img1 [image create photo -file button.png] set img2 [image create photo -file button-pressed.png] set img3 [image create photo -file button-active.png] style element create Button.button image [list $img1 pressed $img2 active $img3] -border {2 4} -sticky we SEE ALSO
ttk::intro(n), ttk::style(n), ttk_vsapi(n), image(n), photo(n) KEYWORDS
style, theme, appearance, pixmap theme, image Tk 8.5 ttk_image(n)
All times are GMT -4. The time now is 07:10 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy