You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: system configuration or operation exception - not supported with auth disabled. The command `{ <<cmd>> }` is not available with auth disabled.
6
+
7
+
== Explanation
8
+
This error occurs when auth is disabled and a user attempts to run a command that is not available unless auth is enabled.
9
+
10
+
== Example scenario
11
+
For example, try to change the current user's password when auth is disabled:
12
+
13
+
[source,cypher]
14
+
----
15
+
ALTER CURRENT USER SET PASSWORD FROM $oldPassword TO $newPassword
16
+
----
17
+
18
+
You will receive the following error:
19
+
20
+
[source]
21
+
----
22
+
error: system configuration or operation exception - not supported with auth disabled. The command 'ALTER CURRENT USER SET PASSWORD' is not available with auth disabled.
23
+
----
24
+
25
+
To fix this, either enable auth or change the password using the `ALTER USER` command:
26
+
27
+
[source,cypher]
28
+
----
29
+
ALTER USER $currentUsername SET PASSWORD $newPassword CHANGE NOT REQUIRED
Copy file name to clipboardExpand all lines: modules/ROOT/pages/errors/gql-errors/index.adoc
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1772,6 +1772,11 @@ Status description:: error: system configuration or operation exception - not su
1772
1772
1773
1773
Status description:: error: system configuration or operation exception - not supported by this server. The command `{ <<cmd>> }` must be executed on the current `LEADER` server.
1774
1774
1775
+
[role=label--new-2025.11]
1776
+
=== xref:errors/gql-errors/51N2A.adoc[51N2A]
1777
+
1778
+
Status description:: error: system configuration or operation exception - not supported with auth disabled. The command `{ <<cmd>> }` is not available with auth disabled.
1779
+
1775
1780
=== xref:errors/gql-errors/51N30.adoc[51N30]
1776
1781
1777
1782
Status description:: error: system configuration or operation exception - not supported with this configuration. `{ <<item>> }` is not supported in `{ <<context>> }`.
0 commit comments