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
0
votes
1 answer
Displaying all users with permissions on a single screen in Jenkins
I'm trying to find a Plugin or a Method which will display all the jenkins users and their permissions on a single screen .
E.g:
Users : Projects : Permission
a xyz read,modify,trigger
Is there any plugin available in…

SKuser
- 35
- 1
- 4
- 9
0
votes
0 answers
How to get the method from the system service?
Need method following methods
userCreate(string, int)
createGuest(string, int) from UserManager class
I have created instance for the class but it not working
UserManager userManager = (UserManager)…
0
votes
1 answer
Is it possible to use Umbraco authentication via REST api for a .Net Core application? I understand that Umbraco itself is not .Net core compliant
I would like to use an existing Umbraco implementation. The only thing I need out of it is to use the user management and authentication in it to serve for the new set of .Net core APIs we wish to write. Is this something that is possible? If yes,…

Pulkit Sethi
- 1,325
- 1
- 14
- 22
0
votes
0 answers
How can I create a Postgres 11 user/role with a different name than the OS-user?
I'm a newbie to PostgreSQL and I'm trying to create a user/role on Postgres 11 (running on CentOS7) which is named (e.g.) "json_docs_admin" (same for password) that I can use under the OS user (e.g.) "app_user" to connect locally to the DB.
I have…

Babak Tourani
- 419
- 2
- 6
- 18
0
votes
1 answer
Automated provision of user access - Jenkins job providing Jenkins user access
I like to get feedback on best practices on Automating Access Management to provide user access to Jenkins. My thoughts here is to create a Jenkins job that an admin can execute that looks up a table of users and executes thereby giving each users…

munchine
- 479
- 1
- 9
- 23
0
votes
1 answer
Laravel laravel-users add fields to CRUD forms
I'm using the laravel-users package to add user management functionality to my Laravel 5.7 application but I'm struggling to figure out how to add additional fields to the user create / user edit forms so that they match my user table schema.
Users…

PiX06
- 431
- 4
- 17
0
votes
1 answer
How do I automatically create users on GCE instances?
I am trying to automatically create a system user linked to a service account, on instance startup. I could not find any info on this in the documentation.
Thanks in advance

Florian
- 1
0
votes
1 answer
How to limit the number of authenticated users with Firebase
I'm currently using Firebase for an online Android game in Kotlin (school project) to authenticate/register users. We're going to release our first version for testing, and I would like to set a limit of people that are able to sign up with Firebase…

Max F
- 39
- 3
0
votes
2 answers
PowerShell - User session management
I have this PowerShell script that logs off users with IDLE time greater that 1 hour:
#Force script to run.
Set-ExecutionPolicy Unrestricted -force
#Check connected users and save output.
quser|out-file…
0
votes
2 answers
Private key for connecting EC2 instance
On-premise, we do not use public-private key to connect to Linux VM, launched on ESX.
root user create/configure local users(with an expiry) on the VM and provide access to non-root users
Admin user(IAM) on AWS console, creates an EC2 instance,…

overexchange
- 15,768
- 30
- 152
- 347
0
votes
1 answer
Symfony 4 - User management
I’m using the latest Symfony 4 bundle with security package installed.
As I use an admin page for my content I need to login of course and so I generated, how I learned it, an user and class entity with an manyToMany relationship.
This works well…
0
votes
0 answers
Spotfire bulk removal of disabled users from groups
Is there a way to remove all the disabled users from all the groups those users belong to ?

Jacek Sierajewski
- 613
- 1
- 11
- 33
0
votes
1 answer
Migrating Wordpress user management to custom CMS
I have a request to migrate wordpress website to a custom CMS.
The problem is that this wordpress website has over 30 000 registered users, and user_meta table is very inconsistent because during the last 5 years they used different plugins for user…

vuk_niko
- 11
- 6
0
votes
0 answers
Laravel: Best way to access user information in Vue.js?
So tools like CASL make it easy to manage different permissions for users in Vue.js. However, I am wondering what is the best and securest way to access user information in Vue.js when using Laravel? So far I only followed Jeffreys tutorials on…

Hillcow
- 890
- 3
- 19
- 48
0
votes
0 answers
How to make sure child processes have correct user ID?
As a etude, I wrote a quick-and-dirty bash script to set a radio alarm a few months ago. It sets a cron/at-job to start streaming an internet radio at as specified time (I use mplayer), and records the job id in a file for easy undoing. However, as…

JakobMST
- 101