kkrasnov1
kkrasnov1
I have similar error. Messages from mongodb_exporter: ``` WARN[0004] cannot load topology labels: cannot check if the instance is an arbiter: timed out while checking out a connection from connection...
Hi @percona-csalguero, What version of mongodb do you have? My version of mongodb is 4.4.9.
> db.version(); 4.2.18 I ran the test with the same version you are using and I got the same results. I'll appreciate if you found a reliable way to reproduce...
The ability to grant permissions to routines appeared in version 11 of PostgreSQL. PostgreSQL versions prior to 11 will be unsupported. Is this acceptable?
Is it possible to determine the PostgreSQL version in the code for "ALL FUNCTIONS IN SCHEMA" and make a choice depending on the version? This is not required for default...
## DDL ```sql CREATE SCHEMA ldap2pg_test AUTHORIZATION xxx; create or replace procedure ldap2pg_test.proc1() language plpgsql as $$ begin commit; end;$$;; ``` ## psql ```console xxx=# \df+ ldap2pg_test.proc1 List of functions...
Hi @bersace, Is it possible to grant privileges to stored procedures?
> > Hi @bersace, Is it possible to grant privileges to stored procedures? > > You can manage EXECUTE on _all_ functions with `__execute_on_functions__` privilege. See https://ldap2pg.readthedocs.io/en/latest/builtins/#execute-on-functions Thank you. It...
@bersace, every time I start, I get a message CHANGE Revoke privilege. grant="EXECUTE ON ALL FUNCTIONS IN SCHEMA userdb.ldap2pg_test TO myuser" database=userdb Am I doing something wrong or is it...
``` - description: "Search LDAP" ldapsearch: base: CN=pg_userdb,OU=Groups,DC=example,DC=com filter: '(objectClass=Group)' scope: sub joins: member: scope: base filter: '(objectClass=User)' on_unexpected_dn: fail roles: - name: '{sAMAccountName.lower()}_1' options: NOLOGIN comment: 'AD group: pg_userdb_1'...