Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"opc_adm already logged in" How Do I Login Now?

Tips & Tricks

"opc_adm already logged in" How Do I Login Now?

by  MikeLacey  Posted    (Edited  )
log in as root and run the following command

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, it will be different on your system. Kill it off like this:

kill -1 9999

Remember - don't use 9999, use the first number in the line that *you* get back from the ps -ef command.

Oh - and don't use the second number, it's the parent process ID and it's probably been allocated to something else by now....

If kill -1 doesn't work, use kill -9, but try -1 first.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top