Lose IP after TL Update


 
Thread Tools Search this Thread
Operating Systems AIX Lose IP after TL Update
# 8  
Old 08-13-2013
I do not believe the activation of the IP stack should be dependent on any application. That said, I did have issues myself, and it came down to things I had done "in innocence", i.e. user error in changes to /etc/inittab and/or /etc/rc.d/* scripts.

In my case I did always get an IP address, just lacked some daemons such as ssh.

Besides rebooting several times to try and observe what was going wrong I also used the output of the command alog -o -t console and alog -o -t boot to read messages from programs to find that missing depenadancy.

Unfortunately, for you, I do not remember the specifics - this was too long ago. But I do recommend checking your alog outputs for hints about what is going on, error messages, etc..

Hint:
mkdev -l en0; mkdev -l inet0 will do what startup should have done (assuming single interface en0. If more interfaces do them all, then inet0.
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. AIX

Lose default gateway

hello iv 2 AIX P720 machine aix 6.1 6100-02-03-0909 both , hacmp ver 6.1.0.0 both machine connect to the same switch. after networking fault , one of the machines lost his default gateway !!! what can be the reason ? thx (4 Replies)
Discussion started by: ariec
4 Replies

2. AIX

AIX with 2 Net Interfaces lose connectivity

hi guys We have a AIX Server with TSM installed. This server has en0 for administration purposes and we have en1 for backup stuff. en0 subnet 10.10.10.x en1 subnet 10.10.20.x The issue we are having is all of a sudden the LPARs we are backing up lose connectivity to the AIX-TSM Server.... (23 Replies)
Discussion started by: karlochacon
23 Replies

3. Shell Programming and Scripting

Does a variable lose its value outside the loop in shell script?

hi, when we assign a variable inside a for loop or while loop in a shell script, does it loses its value after comming out of the loop. i am facing this issue. can anyone help me?? (8 Replies)
Discussion started by: Little
8 Replies

4. UNIX for Dummies Questions & Answers

Trying to lose XP & Install Suse 10.1

Hello, I bought a second pc to install Suse 10.1 on. It came with Xp pro installed on it. I downloaded Suse 10.1, burned 5 CD's, changed bios to boot from the cdrom, restart the pc & Xp loads. Any suggestions? Thank You (1 Reply)
Discussion started by: Nick7269
1 Replies

5. Solaris

Will I lose drivers while upgrading to ten?

I'm running Solaris 8 with a box I just got and it has a VGA connection. Will I lose the VGA driver while upgrading to 10? I don't have a Sun Monitor so if so I'll be screwed. Tia (0 Replies)
Discussion started by: PapaPark
0 Replies
Login or Register to Ask a Question
condor_findhost(1)					      General Commands Manual						condor_findhost(1)

Name
       condor_findhost find - machine(s) in the pool that can be used with minimal impact on currently running Condor jobs and best meet any spec-
       ified constraints

Synopsis
       condor_findhost [-help] [-m] [-n num] [-c c_expr] [-r r_expr] [-p centralmanagerhostname]

Description
       condor_findhostsearches a Condor pool of machines for the best machine or machines that will have the minimum impact on running Condor jobs
       if  the machine or machines are taken out of the pool. The search may be limited to the machine or machines that match a set of constraints
       and rank expression.

       condor_findhostreturns a fully-qualified domain name for each machine. The search is limited (constrained) to a specific  set  of  machines
       using  the  -coption. The search can use the -roption for rank, the criterion used for selecting a machine or machines from the constrained
       list.

Options
       -help

	  Display usage information and exit

       -m

	  Only search for entire machines. Slots within an entire machine are not considered.

       -n num

	  Find and list up to nummachines that fulfill the specification. numis an integer greater than zero.

       -c c_expr

	  Constrain the search to only consider machines that result from the evaluation of c_expr. c_expris a ClassAd expression.

       -r r_expr

	  r_expris the rank expression evaluated to use as a basis for machine selection. r_expris a ClassAd expression.

       -p centralmanagerhostname

	  Specify the pool to be searched by giving the central manager's host name. Without this option, the current pool is searched.

General Remarks
       condor_findhostis used to locate a machine within a pool that can be taken out of the pool with the least disturbance of the pool.

       An administrator should set preemption requirements for the Condor pool. The expression

       (Interactive =?= TRUE )

       will let condor_findhostknow that it can claim a machine even if Condor would not normally preempt a job running on that machine.

Exit Status
       The exit status of condor_findhostis zero on success. If not able to identify as many machines as requested, it returns one more  than  the
       number  of  machines identified. For example, if 8 machines are requested, and condor_findhostonly locates 6, the exit status will be 7. If
       not able to locate any machines, or an error is encountered, condor_findhostwill return the value 1.

Examples
       To find and list four machines, preferring those with the highest mips (on Drystone benchmark) rating:

       condor_findhost	-n 4 -r "mips"

       To find and list 24 machines, considering only those where the  kflops attribute is not defined:

       condor_findhost	-n 24 -c "kflops=?=undefined"

Author
       Condor Team, University of Wisconsin-Madison

Copyright
       Copyright (C) 1990-2012 Condor Team, Computer Sciences Department, University of  Wisconsin-Madison,  Madison,  WI.  All  Rights  Reserved.
       Licensed under the Apache License, Version 2.0.

       See the Condor Version 7.8.2 Manualor http://www.condorproject.org/licensefor additional notices.

       condor-admin@cs.wisc.edu

								  September 2012						condor_findhost(1)