Changing the UID & GID after CRS, ASM, RDBMS software has been installed
944410Jun 18 2012 — edited Jun 19 2012I have 10 servers with inconsistent UID’s & GID’s, all running a single node cluster setup (11.22.0.3). I am wanting to make ALL of these servers consistent and can do so with a simple command run as root
find / -uid oracle –exec chown 777 {} \;
find / -gid oracle –exec chgrp 777 {} \;
I am really trying to do this without reinstalling software all over the place. But, I can not get Oracle support to sanction this.
Any ideas from you folks???