What permissions does the user need to have that i will be using in the Oracle wizards?
Thanks!
Oracle Wizard
Oracle Wizard
2 of XI5.6.14 Prod/DR/DEV - Nagios LogServer 2 Nodes
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
-
slansing
- Posts: 7698
- Joined: Mon Apr 23, 2012 4:28 pm
- Location: Travelling through time and space...
Re: Oracle Wizard
The user would need "Can (re)configure hosts and services." This will allow them to run a wizard without having access to the CCM. They can also configure add and delete their own services and hosts.
Re: Oracle Wizard
Sorry, you missunderstood my question, guess I didn't phrase it that great
While running the Oracle wizard, it asks for a server IP and a username and password to connect to oracle with...what permissions does that Oracle user need?
While running the Oracle wizard, it asks for a server IP and a username and password to connect to oracle with...what permissions does that Oracle user need?
2 of XI5.6.14 Prod/DR/DEV - Nagios LogServer 2 Nodes
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
-
slansing
- Posts: 7698
- Joined: Mon Apr 23, 2012 4:28 pm
- Location: Travelling through time and space...
Re: Oracle Wizard
Ah sorry for the misunderstanding, the user is typically set up specifically for Nagios, and it's permissions would be based on what you are accessing. Usually read access but its all dependent on your needs.
Re: Oracle Wizard
The underlying plugin suggests this:
Code: Select all
CREATE USER nagios IDENTIFIED BY oradbmon;
GRANT CREATE SESSION TO nagios;
GRANT SELECT any dictionary TO nagios;
GRANT SELECT ON V_$SYSSTAT TO nagios;
GRANT SELECT ON V_$INSTANCE TO nagios;
GRANT SELECT ON V_$LOG TO nagios;
GRANT SELECT ON SYS.DBA_DATA_FILES TO nagios;
GRANT SELECT ON SYS.DBA_FREE_SPACE TO nagios;
-- or if you're using oracle 8.7.1 --
GRANT SELECT ON sys.dba_tablespaces TO nagios;
GRANT SELECT ON dba_temp_files TO nagios;
GRANT SELECT ON sys.v_$Temp_extent_pool TO nagios;
GRANT SELECT ON sys.v_$TEMP_SPACE_HEADER TO nagios;
GRANT SELECT ON sys.v_$session TO nagios;Nicholas Scott
Former Nagios employee
Former Nagios employee