Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/ROOT/content-nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@
**** xref:errors/gql-errors/51N27.adoc[]
**** xref:errors/gql-errors/51N28.adoc[]
**** xref:errors/gql-errors/51N29.adoc[]
**** xref:errors/gql-errors/51N2A.adoc[]
**** xref:errors/gql-errors/51N30.adoc[]
**** xref:errors/gql-errors/51N31.adoc[]
**** xref:errors/gql-errors/51N32.adoc[]
Expand Down
37 changes: 37 additions & 0 deletions modules/ROOT/pages/errors/gql-errors/51N2A.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
:page-role: new-2025.11
= 51N2A

== Status description
error: system configuration or operation exception - not supported with auth disabled. The command `{ <<cmd>> }` is not available with auth disabled.

== Explanation
This error occurs when auth is disabled and a user attempts to run a command that is not available unless auth is enabled.

== Example scenario
For example, try to change the current user's password when auth is disabled:

[source,cypher]
----
ALTER CURRENT USER SET PASSWORD FROM $oldPassword TO $newPassword
----

You will receive the following error:

[source]
----
error: system configuration or operation exception - not supported with auth disabled. The command 'ALTER CURRENT USER SET PASSWORD' is not available with auth disabled.
----

To fix this, either enable auth or change the password using the `ALTER USER` command:

[source,cypher]
----
ALTER USER $currentUsername SET PASSWORD $newPassword CHANGE NOT REQUIRED
----

ifndef::backend-pdf[]
[discrete.glossary]
== Glossary

include::partial$glossary.adoc[]
endif::[]
5 changes: 5 additions & 0 deletions modules/ROOT/pages/errors/gql-errors/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1772,6 +1772,11 @@ Status description:: error: system configuration or operation exception - not su

Status description:: error: system configuration or operation exception - not supported by this server. The command `{ <<cmd>> }` must be executed on the current `LEADER` server.

[role=label--new-2025.11]
=== xref:errors/gql-errors/51N2A.adoc[51N2A]

Status description:: error: system configuration or operation exception - not supported with auth disabled. The command `{ <<cmd>> }` is not available with auth disabled.

=== xref:errors/gql-errors/51N30.adoc[51N30]

Status description:: error: system configuration or operation exception - not supported with this configuration. `{ <<item>> }` is not supported in `{ <<context>> }`.
Expand Down