Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
#ITAutomation #AIOps #CloudPakforAIOps #AIOps
How can we change the ObjectServer password on aix? Currently, the default password is empty.I checked the documents but couldn't find it or missing it. Thanks in advance.
Hi, use these commands:
nco_sql -server NCOMS -user root
(NCOMS is the default name, change it to your objectserver name)
> alter user 'root' set password 'yournewpassword';
(these are single quotes and don't forget the semicolon)
> go
> exit
Great, thank you Javier!