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
7
votes
5 answers
Enumerate Windows user group members on remote system using c#
Within c#, I need to be able to
Connect to a remote system, specifying username/password as appropriate
List the members of a localgroup on that system
Fetch the results back to the executing computer
So for example I would connect to \SOMESYSTEM…

quux
- 660
- 1
- 10
- 22
7
votes
3 answers
Yii, best way to implement "user change of password"
I'm using Yii for an application, I'm writing a very simple user management, like registering, deleting and updating users... For updating the existing user I need to check the old password first before change it to the new inserted password. So…

mahsa.teimourikia
- 1,664
- 9
- 32
- 64
6
votes
1 answer
Difference between AspNetUsermanager and UserManager
NB I got warning that there are many similar questions available. However, those are mostly regarding other concepts such as difference between user managers and user stores (and also, difference between a bunch of unrelated things, so I'm guessing…

Konrad Viltersten
- 36,151
- 76
- 250
- 438
6
votes
1 answer
How to generate and use login action token for Keycloak user update profile in external mail template
Our backend is currently using the KeyCloak Admin Client API (Java) to
Create users
Create roles
Assign roles to users
Executing actions emails (“UPDATE_PASSWORD”, “UPDATE_PROFILE”, “VERIFY_EMAIL”)
Our flow however needs to support the following…

ddewaele
- 22,363
- 10
- 69
- 82
6
votes
1 answer
Web FrameWork for User and Group Management
We are developing a Web app and looking for a solid existing framework/app that has User Management, Group Management, login screens, Group Admin screens, User SignUp, etc ...
I have a feeling that all SaaS providers require such a thing and there…

Raks
- 1,723
- 3
- 18
- 26
6
votes
1 answer
R shiny session with multiple users connected
Minimal reproducible example:
library("shiny")
ui <- fluidPage(
actionButton("button1", "Run 1"),
actionButton("button2", "Run 2")
)
server <- function(session, input, output) {
cat("session starts\n")
observeEvent(input$button1, {
…

JonnyRobbie
- 526
- 5
- 16
6
votes
5 answers
How can I set a users password in linux from a python script?
I'm trying to automate the setup of SFTP access. This script is running as a user with sudo permissions and no password.
I can create a user like so:
>>> import subprocess
>>> process = subprocess.Popen(['sudo', 'useradd', 'test'], shell=False,…

Jake
- 12,713
- 18
- 66
- 96
6
votes
2 answers
phpmyadmin cannot delete user
After upgrading to Debian Stretch phpmyadmin no longer give me the option in the User accounts tab to delete database users. Mariadb and phpmyadmin was installed with standard Debian packages and I access phpmyadmin with and administrative user that…

ñull
- 504
- 4
- 17
6
votes
4 answers
VisualSVN Server password change
Has anyone come up with a way to allow remote users to change their own passwords in VisualSVN server? We have it running in 'stand-alone' (non-ActiveDirectory) mode and the only down side that I've found to this excellent product is that users…

Tim Long
- 13,508
- 19
- 79
- 147
6
votes
3 answers
Ansible for user management -removing dead accounts
How to efficiently manage user accounts in Ansible?
I want to keep user accounts and certificates in list.
When running playbook I would like to create every account from list (thats easy).
I also want to remove accounts existing on host, but not…

Bartosz Bilicki
- 12,599
- 13
- 71
- 113
6
votes
3 answers
The current types, IUserStore and DbConnection, are respectively an interface and abstract class and cannot be constructed
If I surf to http://localhost:58472/Account/Register I've this exception
System.InvalidOperationException: The current type, IUserStore, is an interface and cannot be constructed. Are you missing a type mapping?
Here is my…

H. Pauwelyn
- 13,575
- 26
- 81
- 144
6
votes
1 answer
Users management in node js with express, mongodb as server database
Looking for the way to add user management to my site.
Site: Working with Node.js & Express, when creating the initial project with Express, the app.js file contains these lines:
app.use('/', routes);
app.use('/users', users);
In addition, a file…

Keren
- 407
- 2
- 7
- 20
6
votes
2 answers
ASP.NET MVC How to manage user content using ASP.NET Membership Provider
I come from 5 years of experience with ASP.NET Web Forms, and I'm new to ASP.NET MVC. I'm now trying to learn MVC with some tutorials, video tutorials, and books.
I'm using Visual Studio 2012 and the brand new ASP.NET MVC 4 to build a little web…

Cheshire Cat
- 1,941
- 6
- 36
- 69
5
votes
2 answers
Subscription management logic
For a system where a user can be a member or admin, users with the member role must either pay for it with a recurring subscription, or be given a complimentary access.
My current approach:
Users have a user database table.
A subscription table…

eoinoc
- 3,155
- 3
- 24
- 39
5
votes
3 answers
Identity management/SSO solution?
What are your recommendations for a basic, centralized identity management/SSO service? It must be open source, have a pluggable identity manager (eg: LDAP, DB, openID, etc.) and provide a decent range of API access options (eg: web services, REST,…

jnorris
- 6,350
- 8
- 30
- 33