Turning from Login v2 back to v1 by modifying the tables?
Any chance we can change from v2 to v1 login in Zitadel through the tables someway? We are running on 3.2.1. What happened is that I turned on "Login v2" in the Features tab, with a base URI of "http://" and then the instance froze automatically and I cannot recover it. Just accessing the instance gives me this error
404 page not found
3 Replies
I had the same problem yesterday.
We had a PAT and used the go sdk to set it back to false:
func SetFeatures(ctx context.Context, adminClient *client.Client) error {
_, err := adminClient.FeatureServiceV2().SetInstanceFeatures(ctx, &feature.SetInstanceFeaturesRequest{
LoginV2: &feature.LoginV2{
Required: false,
},
})
return err
}
Marcel, you're the best! thank you very much
Out of curiousity, what version are you running on?
No problem, happy that it helped.
We are running 4.0.1 now, but with Login V1. I had issues getting Login V2 running in a multi instance env and also some further questions on the instance I configured with Login V2 (see https://discord.com/channels/927474939156643850/1405585074786668545).