Skip to content
Snippets Groups Projects
Commit 31cf5cad authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-inventories/tineon#8943 Enable oracle monitoring with netdata

parent a0d3b6bd
No related branches found
No related tags found
No related merge requests found
......@@ -33,3 +33,15 @@
tag: 18c
push: no
source: build
- name: Install Python Library
pip:
executable: '{{ item }}'
name: '{{ packages }}'
state: latest
vars:
packages:
- cx_Oracle
with_items:
- pip3
- pip2
......@@ -3,3 +3,8 @@ alter profile DEFAULT limit password_life_time UNLIMITED;
create pluggable database {{ oracle_schema }} admin user {{ oracle_schema }} identified by "{{ oracle_password }}" file_name_convert=('/opt/oracle/oradata/XE/pdbseed','/opt/oracle/oradata/XE/{{ oracle_schema }}');
alter pluggable database {{ oracle_schema }} open read write;
alter pluggable database all save state;
ALTER SESSION SET "_ORACLE_SCRIPT"=true;
CREATE USER netdata IDENTIFIED BY netdata;
GRANT CONNECT TO netdata;
GRANT SELECT_CATALOG_ROLE TO netdata;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment