Operating System - HP-UX
1833858 Members
3005 Online
110063 Solutions
New Discussion

current machine identifier

 
SOLVED
Go to solution
Kurt Beyers.
Honored Contributor

current machine identifier

Hi,

I needed to move a software license to a new IP address of the server (via www.webware.hp.com) and I didn't know my "current machine identifier". I managed to get around by using the order number, but I'm wondering if I can find this identifier in the output of a command. I know the system handle of the server (or do I have to ask it to HP), but he wouldn't accept this as the machine identifier.

Thanks,
Kurt
4 REPLIES 4
S.K. Chan
Honored Contributor

Re: current machine identifier

I think it's in ..

# uname -a

.. the 6th field ..
S.K. Chan
Honored Contributor
Solution

Re: current machine identifier

..or .. to get it directly ..

# uname -i
Michael Tully
Honored Contributor

Re: current machine identifier

Hi Kurt,

Correct is in the uname -a output

# uname -a
or
# uname -a | awk '{print $6}'

Michael
Anyone for a Mutiny ?
Kurt Beyers.
Honored Contributor

Re: current machine identifier

Thanks for the quick answer!

Kurt