Questions tagged [createuser]

144 questions
3
votes
9 answers

firebase createUserWithEmailAndPassword is not working in android

I'm trying to use the createUserWithEmailAndPassword method to create users but not able to do so. The OnAuthenticate method is being called but user object is null and no user is being created inside firebase console. Here is my code, which is the…
ajay parmar
  • 31
  • 1
  • 1
  • 2
3
votes
1 answer

"sudo: unknown user: postgres" when trying to create postgres user

I'm using Mac 10.9.5 and PostgreSQL 9.3.4. I'm following instructions for installing a third-party software package (Instructure Canvas) on my local machine) and the instructions say to execute: sudo -u postgres createuser $USER sudo -u postgres…
Dave A
  • 2,780
  • 9
  • 41
  • 60
2
votes
1 answer

How to call the CreateUser method from a webreference

I've ran out of things to try, so I hope someone can help me with this. I'm creating a "Register" page. When a user clicks the "Register" button, their information (email, username, password) needs to be stored into an Access database. I've created…
jannn
  • 93
  • 1
  • 3
  • 10
2
votes
2 answers

mysql: cannot create user after delete the user with phpmyadmin

I was trying to create a mysql user with: $ mysql5 -u root -p $ [enter password] $ create user 'name'@'localhost' indentified by '123456'; Then I accidentally deleted the user while using phpMyAdmin. So I came back to terminal to create the user…
hoyomi
  • 277
  • 1
  • 6
  • 19
2
votes
1 answer

Create user only if not exists in MongoDB (simple example)

I'm newby to MongoDB and .js. I have a simple add_app_user.js script with the following content: # MongoDB shell version v4.2.17 # Set the database to 'testdb'. db = db.getSiblingDB('testdb'); # Create new user. db.createUser( { user:…
Vab
  • 412
  • 1
  • 11
2
votes
1 answer

While creating user in Odoo getting operation cannot be completed

Thank you in advance for your help. I am getting the below error while creating a user in Odoo, initially, it was working fine but suddenly it started showing this error: The operation cannot be completed: another model requires the record being…
Dr. Rajesh Rolen
  • 14,029
  • 41
  • 106
  • 178
2
votes
2 answers

Create user & group if it does not exist using Ansible

I have a customized requirement. Check if user tomuser belongs to group tomuser & exists no matter what the uid, gid is; then simply do nothing i.e. we are good. if group tomuser does not exist create group tomuser with gid 1900. if user tomuser…
Ashar
  • 2,942
  • 10
  • 58
  • 122
2
votes
0 answers

What's the recommended database to store MongoDB accounts?

We're still fairly new to MongoDB, and I'm curious if storing the user account in the same database as the data is really a wise idea. The db.createUser() documentation didn't seem to cover this topic, or I missed it while re-reading the page. Where…
intrand
  • 21
  • 2
2
votes
3 answers

Is there any way possible to create or delete Users in bulk using GRAPH API in Azure AD B2C

I am trying to make a console app in C# through which I want to migrate more than 100000 users to Azure AD B2C. We are using Graph API for this purpose. My current approach creates a single user account per API call and it takes more than 12 hours…
Arnav Garg
  • 41
  • 1
  • 5
2
votes
0 answers

Is it OK to have one register API for mobile and web app in web API?

I want to know when i'm writing a web API to make service for mobile and angular 2 clients , should i write one register api for both of them(mobile and angular 2) ? or i should write for each one separately. my register user view model for web and…
salar
  • 41
  • 5
2
votes
0 answers

Android Firebase createUserWithEmailAndPassword method not entering

my android program Firebase Login-Register screen's createUserWithEmailAndPassword method not working. public void btnUserkayit_Click(View view) { final ProgressDialog progressDialog = ProgressDialog.show(RegisterActivity.this, "Lütfen…
2
votes
1 answer

How to create New user using Asp.net mvc identity out side from Accountcontroller?

I am trying in my applicaton to add user outside from Registriation so outside Accountcontrol and i tried to add manually to database but it does not work also i need to take the hashpassword
BilalMr
  • 307
  • 3
  • 22
2
votes
2 answers

why dosn't MySQL like the user 'a'@'b' when I just dropped them from mysql.user?

This is what I did. mysql> CREATE USER 'matrix'@'%.something.com' IDENTIFIED BY 'weak'; ERROR 1396 (HY000): Operation CREATE USER failed for 'matrix'@'%.something.com' mysql> CREATE USER 'foo'@'%.something.com' IDENTIFIED BY 'weak'; Query OK, 0 rows…
BCS
  • 75,627
  • 68
  • 187
  • 294
2
votes
2 answers

createuser could not connect to database postgres

Please don't move this question to askubuntu as I think this question is not OS-specific. When I invoke the createuser postgres command (for now it doesn't matter if I provide any parameters or not), I'm getting this error: createuser: could not…
mnowotka
  • 16,430
  • 18
  • 88
  • 134
2
votes
1 answer

creating roles in database project

I`m using database project in visual studio 2013(professional). All other thing works great, but I`m facing the issue with create user command. even I have already created user for dbproj on server with all access. Even I have only import database…
Ravindra Sinare
  • 675
  • 1
  • 9
  • 25
1
2
3
9 10