Operating System - HP-UX
1833839 Members
2115 Online
110063 Solutions
New Discussion

strange System Error errors on the console

 
SOLVED
Go to solution
Grayh
Trusted Contributor

strange System Error errors on the console

I have some strange messages popping over my screen...

Message from syslogd@iuxclient1 at Fri Sep 26 16:00:08 2008 ...
iuxclient1 esmd: System Error: The EVM daemon has failed and cannot be restarted

# Sep 26 16:19:08 iuxclient1 esmd: System Error: The EVM daemon has failed and c
annot be restarted
Sep 26 16:19:08 iuxclient1 esmd: System Error: The EVM daemon has failed and can
not be restarted

Message from syslogd@iuxclient1 at Fri Sep 26 16:20:02 2008 ...
iuxclient1 esmd: System Error: The EVM daemon has failed and cannot be restarted
Sep 26 16:20:02 iuxclient1 above message repeats 19 times
Sep 26 16:20:02 iuxclient1 above message repeats 19 times

Message from syslogd@iuxclient1 at Fri Sep 26 16:20:02 2008 ...
iuxclient1 above message repeats 19 times
Sep 26 16:20:09 iuxclient1 esmd: System Error: The EVM daemon has failed and can
not be restarted
Sep 26 16:20:09 iuxclient1 esmd: System Error: The EVM daemon has failed and can
not be restarted

Message from syslogd@iuxclient1 at Fri Sep 26 16:20:09 2008 ...
iuxclient1 esmd: System Error: The EVM daemon has failed and cannot be restarted

While doing a ignite Installation I have used iuxclient1 name for the server in /etc/bootptab file.

How shoud I remove it..
9 REPLIES 9
James R. Ferguson
Acclaimed Contributor

Re: strange System Error errors on the console

Hi:

Is this 11.31 ? If so, you might want these patches:

PHCO_36032
PHCO_36038

Regards!

...JRF...
Grayh
Trusted Contributor

Re: strange System Error errors on the console

when I was trying to install those patches on the server found that /tmp is full...

how can I increase the size of /tmp

/dev/vg00/lvol4 524288 516960 7328 99% /tmp
Andres_13
Respected Contributor

Re: strange System Error errors on the console

Hi,

If you don't have OnlineJFS you need to do as single user:

lvextend -L /dev/vg00/lvol5
umount /dev/vg00/lvol5
extendfs /dev/vg00/lvol5
mount /dev/vg00/lvol5 /tmp

If you have OnlineJFS:

lvextend -L /dev/vg00/lvol5
fsadm -F vxfs -b

Regards!
Grayh
Trusted Contributor

Re: strange System Error errors on the console

# ls
PHCO_38050 PHKL_38054 hpux__11.31_09260816.tar
PHCO_38064 PHKL_38080 hsperfdata_oracle
PHKL_36261 PHKL_38091 hsperfdata_root
PHKL_37460 PHKL_38398 isisd
PHKL_37462 PHKL_38414 ntp
PHKL_37463 README_hp-ux ramd
PHKL_38034 aaa006334 ripngd
PHKL_38035 bgpd secweb_swlist13946
PHKL_38038 create_depot_hpux.11.31 swagent.log
PHKL_38040 envd.action2 ugswlist14267
PHKL_38053 envd.action5
# chmod u+x create_depot_hpux.11.31
# ./create_depot_hpux.11.31
interpreter "/bin/ksh" not found
sh: ./create_depot_hpux.11.31: not found.
# sh ./create_depot_hpux.11.31
awk: Cannot find or open file ./patch_manifest.
The source line number is 1.
Error 7901: No patches specified in patch_manifest file
# pwd
/var/tmp
#
SKR_1
Trusted Contributor
Solution

Re: strange System Error errors on the console

Hi

# sh ./create_depot_hpux.11.31 ( wrong syntex)

Please give below command

# sh create_depot_hpux.11.31

Thanks

SKR
Dennis Handly
Acclaimed Contributor

Re: strange System Error errors on the console

># chmod u+x create_depot_hpux.11.31

I would assume this was already set?

># ./create_depot_hpux.11.31
interpreter "/bin/ksh" not found
sh: ./create_depot_hpux.11.31: not found.

This indicates something is terribly wrong with your system. Is ./usr/bin mounted? And if so, is /bin a symlink to /usr/bin?

># sh ./create_depot_hpux.11.31
awk: Cannot find or open file ./patch_manifest.

You need this file to tell the script which patches you have. Were you out of space before it could be extracted?

># pwd -> /var/tmp

You may want to create a subdirectory so you can see/remove only the particular files in the patch you downloaded.

>SKR: # sh ./create_depot_hpux.11.31 (wrong syntax)
# sh create_depot_hpux.11.31

Both commands do the same thing. PATH isn't checked.
Suraj K Sankari
Honored Contributor

Re: strange System Error errors on the console

Hi,

HP is providing a README file with every patch.tar so read the README file it will help you a lot how to install how to create depot all this.


Suraj
Bill Hassell
Honored Contributor

Re: strange System Error errors on the console

> interpreter "/bin/ksh" not found

Did you transfer these patches through a PC? You probably forgot to change the transfer option from ASCII to BINARY. You can verify that this is the problem by typing this command:

head create_depot_hpux.11.31 | cat -v

If you see the special characters ^M at the end of each line (for example: #!/bin/ksh^M), all the files are corrupted and must transferred from your PC using ftp, but this time, type the command: BINARY before using the put or mput command. PCs have a different format for ASCII files and the HP-UX patches must be transferred with no translation.


Bill Hassell, sysadmin
Grayh
Trusted Contributor

Re: strange System Error errors on the console

thank you