Questions tagged [createuser]
144 questions
0
votes
0 answers
Google Workspace API creating user, password issue
Im trying to create users using the workspace API, but I'm getting stuck at the password. If I use sha 256 the user is created but I can't log in with the password I made the user with. Below is my code
def create_user(self, email, password,…

Dr Squa
- 1
0
votes
1 answer
Cannot create superuser in postgres 14 WSL / Linux - Terminal
After i try
$ sudo -u postgres createuser --interactive
it promts me with the name and superuser option (which I say yes)
then I get this error
createuser: error: connection to server on socket "/var/run/postgresql/.s.PGSQL.5432" failed: FATAL: …

andresnb
- 1
- 1
0
votes
0 answers
Trying To createUser with Firebase and when i am using Auth.auth().createUser(withEmail: email, password: password) give me an error
enter image description here
#error >> Type of expression is ambiguous without more context.
Auth.auth().createUser(withEmail: email, password: password) { AuthDataResult, error in
// handle error
if let error = error {
…
0
votes
1 answer
Powershell incorrect running sequence
Kinda new to powershell and trying to write scripts in general. Im trying to create a script that creates an AD user and then assigns that user a license.
However doesn't seem to matter what I do, the sync command I have doesnt execute before the…

S3RRATED
- 3
- 1
0
votes
0 answers
Unable to re-create Gitlab user account
I have removed the Gitlab user using rails command from Gitlab CE docker container as below
gitlab-rails console
user = User.find_by_username('')
user.delete
and now when i'm trying to create new account with same username. Gitlab 15.5…

Jay Singh
- 109
- 2
- 13
0
votes
1 answer
Oracle XE 21c: cannot associate tablespace with user
This is the first time that I am using Oracle.
I am using Oracle XE 21c, within a Docker container (gvenzl/oracle-xe:latest).
I create a tablespace.
I create a user, and I want to associate the previously create tablespace to the use (as default…

Denis Beurive
- 305
- 2
- 10
0
votes
1 answer
Launcher Unhandled Rejection [TypeError, Cannot read property 'createUser' of undefined]
I'm testing Botpress under Windows.
Just downloaded latest binaries, unpacked BP, embedded to site and ran default 'Welcome' bot without modifications.
When I started webpage and chat to bot, it gives an error in a log:
11/05/2022 11:27:32.360…
0
votes
1 answer
Creating username & password using script in mysql fails with ERROR 1045 (28000): Access denied
Below is my running mysql instance:
sudo systemctl status mysqld
● mysqld.service - MySQL 8.0 database server
Loaded: loaded (/usr/lib/systemd/system/mysqld.service; disabled; vendor preset: disabled)
Active: active (running) since Thu…

Ashar
- 2,942
- 10
- 58
- 122
0
votes
1 answer
Mongo createUser command requires authentication
I have installed Mongo 4.4 on Ubuntu 20. Im trying to create an admin user. But everytime I run the createUser command I get the following error.
How can I overcome this?
Thank you!

acG
- 97
- 2
- 6
0
votes
2 answers
How to Create User Groups in Snowflake
After creating multiple users in Snowflake, can they be treated as groups? I want to grant a role for each user group.

小谷昂平
- 41
- 1
0
votes
0 answers
Auth0 createUser API reactJS w/ Express Backend
I’m just learning how to hook up my ReactJS frontend to a Node.JS /Express backend, using the Auth0 SDK.
So far, so good in terms of creating users and adding user_metadata / user_appdata via the Auth0 console and User Management API; but I would…

C-Los FX
- 61
- 1
- 12
0
votes
1 answer
Forbidden: /api/v1.0/user/create-user/ & { "detail": "Authentication credentials were not provided." } DJANGO
I was creating Login functionality for my Python Django backend, "create user" functionality was working fine before. But then after Login was entirely coded, the create-user stopped working.
My urls.py file:
from django.urls import path
from .views…

falcon
- 31
- 8
0
votes
1 answer
HTTP Status 500 - Error instantiating servlet class in user registration
I am trying to create a new servlet for signup in my eCommerce application.
Getting this error
HTTP Status 500 – Internal Server Error
Type Exception Report
Message Error instantiating servlet class…

Mohammad Sami
- 25
- 7
0
votes
1 answer
Create user identified as admin
The syntax is this:
CREATE USER 'Adrian' IDENTIFIED BY 'Admin';
GRANT ALL ON `Spital`.* TO 'Adrian';
GRANT SELECT, INSERT, TRIGGER, UPDATE, DELETE ON TABLE `Spital`.* TO 'Adrian';
GRANT SELECT, INSERT, TRIGGER ON TABLE `Spital`.* TO 'Adrian';
GRANT…
0
votes
0 answers
Can not create super user, because foreign key can not be null
How to assign foreign key value, when creating super user in Django?
I want to make new superuser using python manage.py createsuperuser command, but I get an error:
ValueError: Cannot assign "]>":…

DevJava
- 5
- 2