logIt Log Around The Clock

application ARMv6 ARMv7 BeagleBoard certificate daemon device driver DNS embedded system emulator file system fuse GPIO image install-deinstall java java GUI job automation kernel local bin make-install managed node monitoring motif GUI OMAP3 OOP OSS OVCoreID php proxy python Raspberry Pi rootfs security shell script snmp socialmedia squid startup tagging template USB web-based wordpress Zabbix

Kill opc_adm Process

tags:

Unclean logout may leave opc_adm logged in and locked for a new session of motif GUI login.

(from a forum thread)
ps -ef | grep opc_adm

And you will get a line back that looks something like
this:

root 9999 8888 0 Aug 9 ? 2:29 ovw -map opc_adm -xrn OVw*...

This is the process that is stopping you logging in. The first number is the process id, and it will be
different on your system. Kill it off like this:

kill -1 9999
After →