Operating System - HP-UX
1834088 Members
2749 Online
110063 Solutions
New Discussion

swinstall: no permissions

 
SOLVED
Go to solution
Arnulf Gercke
Frequent Advisor

swinstall: no permissions

Help!

want to install software (Secure Path VA) on a rp3440 with HP-UX 11.11. I'm root but Installer
says, I've no permissions. I checked /var/adm/sw/swagentd.log. There is written, that the network-host-entry for my hostname can not be inquiried.
I've changed the hostname some time before.
Is that the reason? Please help!
5 REPLIES 5
RAC_1
Honored Contributor
Solution

Re: swinstall: no permissions

Problems with host name resolution may cause this. What does following say??

nslookup "host_name"
nslookup "ip_address_of_host"

Are both correct?? How did you change the host name?? Should always be changed with
/etc/set_parms hostname

Also check if you local loopback entry in /etc/hosts file.

Anil
There is no substitute to HARDWORK
Thayanidhi
Honored Contributor

Re: swinstall: no permissions

Some times simply restarting swagent also works. Try

/sbin/init.d/swagentd stop
/sbin/init.d/swagentd start

Regds
TT
Attitude (not aptitude) determines altitude.
Bill Hassell
Honored Contributor

Re: swinstall: no permissions

This is almost always caused by changes in the hostname. If you do not reboot, then you must restart swagentd.

/sbin/init.d/swagentd stop
/sbin/init.d/swagentd start

If that does not fix it, you've got other problems with your networking setup. How to fix it requires knowledge of whether you are using DNS, whether you changed the hostname in all the correct places, and if using DNS, whether the DNS server was updated.


Bill Hassell, sysadmin
Arnulf Gercke
Frequent Advisor

Re: swinstall: no permissions

I've changed the hostname via set_parms hostname and rebooted the system, so swagentd was restarted with the reboot.

But the problem was: /etc/resolv.conf.
After deleting the entries in resolv.conf,
swinstall succeeded.
Arnulf Gercke
Frequent Advisor

Re: swinstall: no permissions

Thank you all for your quick responses.