Questions tagged [createuser]

144 questions
1
vote
1 answer

How do I get all four keyValue pairs using RestAssured for CreateUser Post request

Response using RestAssured doesn't include all four key value pairs, it works fine in Postman and returns all four values. Bottom right is the response of my post CREATE USER query https://reqres.in/ Top left I have attempted to write a code that…
cube
  • 29
  • 4
1
vote
1 answer

Create logins, create user from stored procedure in Azure

I've inherited a very old app that runs on SQL Server 2005. I'm trying to move this app to Azure. One thing the stored procedures in this app do is create new database logins and new users. I know that many of the functions and system procedures it…
1
vote
0 answers

How to hash realmdb password

I want to create/update realmdb password on path __password. I cannot find clear documentation about it, i just explore realm studio and realmdb graphql API. From realm studio i found salt, digest (sha512), and hash. From that key i produce sha512…
yuda
  • 1,907
  • 3
  • 16
  • 23
1
vote
1 answer

.net mvc email as username returning error - InvalidProviderUserKey

I have a .Net MVC application that I am trying to use an email address as the username. I implemented the logic from this article where the username is masked as the email. However, when I try to call private readonly MembershipProvider…
jamesamuir
  • 1,397
  • 3
  • 19
  • 41
1
vote
1 answer

createuser: could not connect to database postgres: could not connect to server: No such file or directory

I installed postgresql on archlinux using this command: sudo pacman -S postgresql And it installed OK. But when I want to create a new user, like this: sudo -iu postgres [postgres@amirashabani ~]$ createuser amirashabani I receive this…
1
vote
1 answer

PostgreSQL `createuser` without specifying username

I ran: $ createuser --pwprompt and saw: Enter password for new role: I expected to be prompted for a username, so at this point I hit CTRL+C. The man page synopsis says that the username is optional: createuser [connection-option...] [option...]…
Tom Hale
  • 40,825
  • 36
  • 187
  • 242
1
vote
0 answers

How to request for login in adminMongo before accessing database

This is what exactly I am talking about, I first want my other users to log in then access database to process further
shubham arora
  • 183
  • 2
  • 13
1
vote
1 answer

wordpress user registration optional fileds with php

The WordPress registration default function just have 3 options: If I want to add some other fileds, like age or somtehing else! with written PHP form, how can I do this? wp_users have some…
Danial Qsk
  • 87
  • 1
  • 9
1
vote
3 answers

Error with AWS Lambda salt and hash

I've been using source code from AWS Lambda in Action - Poccia, to create users in a User Pool and Identity Pool. I keep getting the error: Response: { "errorMessage": "RequestId: f6511085-f22c-11e7-be27-534dfc5d6456 Process exited before…
jwright
  • 11
  • 3
1
vote
1 answer

Impossible to create users (or custom-based roles) in Mongo on server NodeJS

I am trying to create users on my database directly from our Express server, using Mongo 3.4 for the database. Here is the code for the server for now: var express = require('express'); var bodyParser = require('body-parser'); var app =…
Adrien Merlier
  • 301
  • 2
  • 5
  • 16
1
vote
1 answer

How To Fix An Error With Getting Values From A List

I was trying to create users using ansible. I created a variable called users with the list of users and other options inside it. Here it is: users: - { user_name: "user1", sudo_type: "full", password: "pass", ssh_pub_key: "ssh-rsa AAAAB..." } -…
zozo6015
  • 557
  • 2
  • 11
  • 27
1
vote
2 answers

Could anyone explain the difference between the two users in mongodb3.4.5

//the first user { "_id" : "admin.guguji55", "user" : "guguji55", "db" : "admin", "roles" : [ { "role" : "readWrite", "db" : "test" } ] } //the second user { "_id" : "test.guguji66", …
dukuan
  • 11
  • 3
1
vote
1 answer

CreateUser fails using mongocxx 3.1.1 C++

Using the MongoDB server 3.4.4 on Windows 10, the following command works just fine: db.createUser( { user: "Billy", pwd : "123456", roles : [ { role: "userAdmin", db : "biolomics_index" }, { role:…
1
vote
1 answer

Meteor Account.createUser TypeError: Cannot read property 'accessToken' of undefined

I try to create User Registration. I have install accounts-base 1.2.2* A user account system accounts-password 1.1.4* Password support for accounts On client side : var userNew = { …
Pamungkas Jayuda
  • 1,194
  • 2
  • 13
  • 31
1
vote
1 answer

GitLab: deleted a user and recreating same user give error "Username has already been taken Username already exists"

I'm using GitLab Community Edition 8.2.2 What's the correct way to delete a user if you want to recreate it? In my case the user wanted to swap the userid and name fields but keep his email address unchanged. When I try to add the user, after…