Re: Regex for Word space Word space Word ....

2021-11-23 Thread chlor
On Tue, Nov 23, 2021 at 11:51 AM Shaozhong SHI wrote: > I tried nested regex '[[A-Z][a-z] ]+[[A-Z][a-z]]' but it did not work. > [A-Z][a-z]+ +[A-Z][a-z]+ will match 'Hello World', but not 'Hello world'. Is that what you want? Try this instead [A-Za-z]+ +[A-Za-z]+ And try also this editor t

LDAP, single sign on from Windows client

2021-04-06 Thread chlor
Hi I have a Linux server which is setup with authentication via LDAP against a Windows A/D. In pg_hba I have host ... ldap ldapserver=example.org ldapprefix="" ldapsuffix="@example.org" The user is also created in PostgreSQL but without a password. I can then login with psql from a Windows client

Re: What's your experience with using Postgres in IoT-contexts?

2020-10-12 Thread chlor
> I want to have long term storage and access to individual telegrams An IOT is not designed for that. It is used for control or delivery of data to a server. You could have a PostgreSQL-client in the IOT but an MQ might be better. Long term storage also means backup and recovery and I don't thin