docker exec greenlight-v2 psql "postgresql://postgres:<hereyourpw>@db:5432/<hereyourdbname>" -c "select * from users;"
--
You received this message because you are subscribed to the Google Groups "BigBlueButton-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/cc1df711-59a3-4fc6-8a99-8cd53b4a589ao%40googlegroups.com.
in you greenlight-folder to get users:docker exec greenlight-v2 psql "postgresql://postgres:<hereyourpw>@db:5432/<hereyourdbname>" -c "select * from users;"Liebe GrüßeDominik
Am Mo., 8. Juni 2020 um 17:13 Uhr schrieb Srikanth A <srikan...@gmail.com>:
--BackStory :
- I have setup BigBlueButton(V2.2) and greenlight
- Some students got registered in that site using greenlight front end
- As a admin, I am able to see that in manage users section
- Green Light is storing the user data in the postgresql by default
Question :
I want to know, How to access that DB and how to export the Data from that DB
You received this message because you are subscribed to the Google Groups "BigBlueButton-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigblueb...@googlegroups.com.
docker exec greenlight-v2 psql "postgresql://postgres:<hereyourpw>@db:5432/<hereyourdbname>" -c "SELECT * FROM pg_catalog.pg_tables WHERE schemaname != 'pg_catalog' AND schemaname != 'information_schema';"
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/eb5408d4-dae1-4cd5-aeab-8c5b087f097eo%40googlegroups.com.
docker exec greenlight-v2 psql "postgresql://postgres:<hereyourpw>@db:5432/<hereyourdbname>" -c "SELECT * FROM pg_catalog.pg_tables WHERE schemaname != 'pg_catalog' AND schemaname != 'information_schema';"there you get the tables from. is there not a user table?Liebe GrüßeDominik
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/eb5408d4-dae1-4cd5-aeab-8c5b087f097eo%40googlegroups.com.