> 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
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
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