Generally used for a component of the software system - which is responsible for creating, managing and controlling users. This includes classical "authentication and authorization" terms too.
Questions tagged [user-management]
537 questions
1
vote
1 answer
Cloud SQL Postgres - Managing Database Users, Best Practices?
What are some recommendations to manage Postgres database users in Cloud SQL at scale in an enterprise environment? For example when many internal individual users (each with their individual IAM user account) want to query a Postgres database in…

Alex Thornbury
- 45
- 2
1
vote
0 answers
Social login concept and best practice
I have started building a website on Laravel and I wanted to include social Login to my site.
I have a basic understanding of how this works. I used Socialite and Google API and followed the documentation and setup a login route to google and was…

bodi87
- 501
- 1
- 6
- 18
1
vote
1 answer
How to Soft Delete a data in Laravel 7 but keeping the data with a Disable status in application?
I have a table with user management in my Laravel Application, and I start use soft delete to dont lost data from database, but I want when I delete my data from my app, just put a disable status instead of delete from app.
enter image description…

calebe santana
- 339
- 2
- 8
1
vote
0 answers
How a Google cloud compute instance (with oslogin enabled) integrates with "/etc/passwd", "/etc/group", etc?
How a Google cloud compute instance (with oslogin enabled) integrates with "/etc/passwd", "/etc/group", etc?
My default username/group isn't listed on the /etc/passwd and /etc/group and it works (ls -l resolve the user/group names correctly). Where…

Berk7871
- 187
- 1
- 2
- 14
1
vote
0 answers
Manage mutliple users
I'm thinking about creating my own budget app, but would like to share it with other users.
My app is using Express+Mongoose(MongoDB) for the server side and Vue.js on the client side.
First, I try making a lot of research on this subject, but all I…

Spy474
- 23
- 3
1
vote
1 answer
drupal database managemant
I'm new to drupal. i'm using drupal 6.x. i'm trying to make project to collect tuition teachers database. this is what i need,
if some teacher need to add his data to my site first he have to create an account, then he need to fill form like…

harsaha
- 11
- 1
1
vote
0 answers
Alternatives of InProc Sessions in .NET Core
I am working on .NET Core web application. I have UserDetails table storing user login credentials & other details. At the time of Login, after checking the user entered credentials against database table I use sessions to manage LoggedIn user…

Priya
- 1,375
- 8
- 21
- 45
1
vote
2 answers
Azure DevOps user migration
After a couple companies merge, we had to build up an AZ DevOps solution from scratch for the new business entity. Unfortunately, at that time we added some users from various companies under their original email addresses (reason: reuse of their VS…

honzajscz
- 2,850
- 1
- 27
- 29
1
vote
1 answer
What are "system managed users" in DocumentDB?
We have a cluster in AWS, with a Document DB up and running. I wanted to grant some extra privileges, so I connected to the database as an user with the root role granted, and did the usual MongoDB thing:
db.grantRolesToUser("nameOfTheUser",…

Martin Grey
- 744
- 2
- 12
- 26
1
vote
1 answer
how to apply screen by screen permisssion in Spring mvc?
I am a beginner in spring MVC framework and I am building an application in which I have a role and role have different permissions on different screen .like:- on Dashboard user have two permissions (Read and write) and in second screen page user…

yash
- 51
- 1
- 9
1
vote
1 answer
Social account and normal account db model
In my application, a user can signup by completing a form or by using a provider (facebook, google, etc.). The main difference is that the user signing up by form will have a password, while the one using a social account will not.
I am not sure…

Never Mind
- 185
- 1
- 14
1
vote
0 answers
SQLAlchemy UNIQUE constraint failed on Many to Many Relationship
When I create a user with User class, for example
User(username='xxx',password='xxxx', role =[Role(name='Admin'),])
Database will also add to Role table a row with name Admin.
The issue is when I create another user with role Admin and it will cast…

Bình Nguyên
- 11
- 1
1
vote
1 answer
Can Joomla send the user an email after admin approves them?
Problem is:
User registers at the side and gets a registration email with a
confirmation link which can be used. and
Admin gets an email notification of a newly registered user
Admin activates & enables the user
No notification email to the user…

Carl
- 11
- 1
1
vote
1 answer
MongoDB Compass won't connect to server, but command line works
I'm running a local test environment with MongoDB on localhost. I can connect to it via Compass and command line using a root user. However, I created another user on my working database (not the admin database). I can connect using command line:…

Ryan Griggs
- 2,457
- 2
- 35
- 58
1
vote
1 answer
How add identity and user management into aspnetcore web api?
I'm building asp.net core web api with 3 types of users: Admin, Clients and Programmers. Each of those roles have their own list of tickets. These are entity classes I've already added:
public class User
{
[Key]
public Guid Id…

kika123
- 31
- 9