Slackbot
06/21/2022, 5:37 AMPranay
Kshitij
06/21/2022, 5:43 AMPrashant Shahi
06/21/2022, 5:48 AMdocker exec -it query-service sh
OR
kubectl -n platform exec -it pod/my-release-signoz-query-service-0 -- sh
Prashant Shahi
06/21/2022, 5:48 AM# install sqlite
apk update
apk add sqlite
# open sqlite with signoz.db
sqlite3 /var/lib/signoz/signoz.db
# (sqlite shell) check existing organizations
select * from organizations;
# (sqlite shell) delete duplicate organization
delete from organizations where name=duplicate-org-name;
# (sqlite shell) verify org deletion
select * from organizations;
# press CTRL + D to exit from sqlite shell
# safely exit from the query-service container
exit
Kshitij
06/21/2022, 6:16 AMPrashant Shahi
06/21/2022, 6:16 AMPrashant Shahi
06/21/2022, 6:16 AMsqlite
locally in that scenerio.Prashant Shahi
06/21/2022, 6:17 AMKshitij
06/21/2022, 6:22 AMPrashant Shahi
06/21/2022, 6:23 AMPrashant Shahi
06/21/2022, 6:24 AMsignoz.db
file.Kshitij
06/21/2022, 6:28 AMKshitij
06/21/2022, 6:41 AMPrashant Shahi
06/21/2022, 6:42 AMKshitij
06/21/2022, 6:46 AMBlake Romano
06/21/2022, 10:50 AMPrashant Shahi
06/21/2022, 10:51 AMPrashant Shahi
06/21/2022, 10:51 AMBlake Romano
06/21/2022, 10:54 AMDanish Ahmad Ansari
06/29/2022, 5:43 AMPranay
Danish Ahmad Ansari
06/29/2022, 7:10 AM