You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2025. It is now read-only.
Version 0.5+ of the exporter is using a go lang driver that don't need the binaries from Oracle. As a side effect, you must transform your string version in order to be compatible with this driver.
130
+
131
+
Basicaly, it consist to follow this convention:
132
+
- Add a string `oracle://` in front of the string
133
+
- Replace the slash (`/`) between user and password by a colon (`:`)
@@ -481,8 +494,11 @@ You can increase the log level (`--log.level debug`) in order to get the stateme
481
494
482
495
## error while loading shared libraries: libclntsh.so.xx.x: cannot open shared object file: No such file or directory
483
496
484
-
This exporter use libs from Oracle in order to connect to Oracle Database. If you are running the binary version, you
485
-
must install the Oracle binaries somewhere on your machine and **you must install the good version number**. If the
497
+
Version before 0.5 use libs from Oracle in order to connect to Oracle Database. After 0.5 release, the oracle exporter use an pure Go DB driver and don't need binaries from Oracle anymore.
498
+
499
+
Please switch to version 0.5.
500
+
501
+
For older version, you must install the Oracle binaries somewhere on your machine and **you must install the good version number**. If the
486
502
error talk about the version 18.3, you **must** install 18.3 binary version. If it's 12.2, you **must** install 12.2.
487
503
488
504
An alternative is to run this exporter using a Docker container. This way, you don't have to worry about Oracle binaries
0 commit comments