Questions tagged [multiple-users]
The multiple-users tag has no usage guidance.
multiple-users
213
questions
44
votes
7
answers
57k
views
How to run pm2 so other server users are able to access the process?
When I start my Nodejs app with pm2, other server users are not able to access the process.
Even if I start pm2 from a custom directory (not current user's ~/, what pm2 is using by default):
HOME=/...
23
votes
2
answers
39k
views
Working with user roles in Django
I have some question
In a project I have the need of work with users which are of three (may be more) types of them have different roles:
physician
patient
administrator
I have been thinking use of ...
14
votes
8
answers
26k
views
Simulate multiple users using a website
I am developing a website (basically a public facing site).
How can I simulate multiple users are surfing my site and doing various activities so that I can understand how my site will behave in a ...
11
votes
4
answers
13k
views
GitHub: Separate credentials for two accounts on Windows
I recently created a second GitHub account two separate my work and my private projects (before, I only had the work account).
I use https in combination with the Windows credential storage. To ...
7
votes
2
answers
13k
views
How to create different user groups in Firebase?
I am making a point of sale app, using Xcode.
I want this app to keep track of stock items, allow users to search stock, scan stock, add or lookup stock using a barcode. Items of stock will be stored ...
7
votes
1
answer
19k
views
Make Python Available to All Users When Already Installed only for One
So I have python installed for my main user account, but I need to use a clean account to make some videos. Is there a way to re-assign my current Python installation along with all installed packages ...
5
votes
2
answers
1k
views
Workflow for using Git SVN and a Remote Git Repository with multiple users
Summary of the question:
I came to realise as I wrote this out that there is a lot of detail, so here's the headline:
What is a good workflow for a team of many users that use SVN and Git SVN within ...
5
votes
1
answer
895
views
Detecting multiple users on one account
I have some kind of web application - you pay for account and then you can use services it provides. Now I would like to detect if two or more users are using one account - and than warn user or ...
5
votes
1
answer
10k
views
How to make my nodejs app serve multiple users?
I am implementing a very basic website using nodejs, and expressjs framework. The idea is that the user enters the website, click on a button that will trigger a cpu-intensive task in the server, and ...
4
votes
1
answer
3k
views
facebook batch request for multiple users
I have a user database from facebook. I want to get their data (interests and friends birthdays) using batch request. Now I can make 1 batch request for 1 user. But considering the no. of users in my ...
4
votes
1
answer
2k
views
C# application for Multiple user Login on same Site
Is this possible to make an application that allows us to make an application that has 4 web browser controls and we can independently use each browser control for different Login on same website.
...
3
votes
1
answer
340
views
How does db4o maintain the performance
I have read here (search on the string key "core operates in single-thread mode") that db4o core is inherently single threaded, then how does it maintain performance/throughput when multiple users try ...
3
votes
1
answer
1k
views
How can you set up a git repository on a server, and allow multiple users to do a git pull, instead of it being owned by one user?
As a team of developers, we build our projects locally (using git) & and push the code to a private repository specific to that project. For web applications, we connect to the production server ...
3
votes
2
answers
1k
views
I am trying to use PassportJs with multiple types of users (each one has a different model). What am I doing wrong?
I am trying to use PassportJs with express using multiple types of users (each one has a different model).
When I use it with only one type of user it is OK but when I add a second one it is not ...
3
votes
2
answers
2k
views
Multiple Instances of CasperJS/phantomJS for load testing
is there a possibility to perform load testing with casperJS/phantomJS? I haven't found out anything about this. My exact situation is that I should test a Webproject in my company. Is there a ...
3
votes
0
answers
1k
views
Using Excel to connect to SQL for multiple users on multiple computers
I am trying to make an Excel file that will pull from a SQL database and provide the front end user with the desired information. Now excel will do lots of calculations after it has pulled the data ...
2
votes
3
answers
2k
views
Can I get more than 1000 records from a PrincipalSearcher?
I am trying to get all users from Active Directory using code:
PrincipalContext ad = new PrincipalContext(contextType, adserviceName, adContext, ContextOptions.SimpleBind, username, password);
...
2
votes
2
answers
196
views
Open Graph action with two people
I have been looking through to Open Graph documentation and I haven't come across actions that can be defined for multiple users.
For instance, x ran a route with y, or x sent y a photo.
Is it ...
2
votes
3
answers
3k
views
Adding a bulk number of users to Jenkins
To create a new user in Jenkins, admin needs to provide a username, emialID and password. Being an admin, is there a way to add a large number of users to Jenkins at a time by providing their username ...
2
votes
2
answers
1k
views
Different users cannot use my WinForms app at the same time
I have a VS WinForms app that uses OleDB to read (only reading, no writing) info from an Excel file. My end-users install the program via click-once, created through the publish-option in Visual ...
2
votes
2
answers
797
views
Selecting the wrong item because of old data in GridView
I'm working in Visual Studio 2010 with C#/ASP.NET and a SQL server database. I'm trying to fix a website that will allow managers to assign employees to various tasks. The problem now is that if two ...
2
votes
1
answer
835
views
Iphone multiple users application
I'm trying to figure out how to make an iPhone application allow multiple users (that have it installed) share data among them. Now, the tricky part is that I don't want to host a server at my place (...
2
votes
1
answer
3k
views
how to fire 'profile_update' hook on adding/removing roles from wp-admin/users.php page? (or what other hook to use in this case)
Background
On adding a specific role (referee) to a profile I add a profile page on a custom post type and link it to that user with a meta value on both the post and the user. I also check if a user ...
2
votes
1
answer
246
views
How to prevent multiple users tables from colliding in SQL Server?
I'm creating an application in C# that calls multiple stored procedures. One of the stored procedure creates a table and the others query that table. Multiple users can use the application at the same ...
2
votes
2
answers
967
views
Connecting different user to 1 server(database derby) in netbeans using java
I made an inventory system in netbeans using the language java and i connect it to derby as my database it is already working as a whole system but I want to have a client-server functionality what ...
2
votes
2
answers
645
views
zf2 + Doctrine a different database for each member
Each connected member of my site has its database.
Here is the doctrine config for "user_1":
return array(
'doctrine' => array(
'connection' => array(
'orm_default' => array(
...
2
votes
0
answers
29
views
C# Webapplication: Why is session usercount (in global.Session_Start) different from hub usercount (in hub OnConnected)
I want to display the number of currently active users.
I first realized that in global.Session_Start
protected void Session_Start(object sender, EventArgs e)
{
int i = 0;
Application.Lock();
...
2
votes
1
answer
235
views
How to Measure data consumed by an user in Azure sql server database?
For an Azure sql server MI, we have multiple external users consuming data,
I would like to know how much data an user is consuming/extracting from the DB?
Can this be checked from,
1.) From SSMS ...
2
votes
0
answers
397
views
Django authenticate always return None
Found a lot of questions about it however couldn't find smth helps me.
Settings.py contains Authentication Backend:
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
)
And ...
2
votes
1
answer
52
views
Doctrine2 - parent, children and sibling users like
after some research i'm still stuck finding a solution to my little problem!
I would like to have a kind of pyramidal hirarchical structure for my users, but with a notion of 'sibling users', let me ...
2
votes
2
answers
321
views
Concurrent users on Application result in MySQL Database Error
I have a C# web application that connects to a MySQL database. When multiple users access the site at the same time we see a "there is already an open datareader associated with this command which ...
2
votes
0
answers
954
views
ASP.NET concurrent users slowing each another
Recently I programmed an ASP.NET MVC 4 web application using Entity Framework, Razor - quite large (about 90 entities, many forms etc.). Everything worked fine and quite fast in my development ...
1
vote
3
answers
2k
views
Ask to set the working directory in R Studio - multiple users working with the same R script
We are three people using the same R script to work on our research project in R Studio. This brings some issues by setting the working directory, because the file and the data sheets are saved ...
1
vote
1
answer
764
views
Wordpress: Set one password for all users in a role, existing + future signups
A client would like me to make a single password work for all users of a certain role(Attendee). I/they know this is not a smart thing to do security-wise, but it must be done. This role has basically ...
1
vote
1
answer
604
views
Is it possible for a process in Linux to change another process's UID?
I was wondering if it was possible for a process in Linux (assuming it had root access) to change another process's UID including the RUID, SUID, and EUID, and if so, if there was a specific ...
1
vote
1
answer
3k
views
How can I create multiple iam users with console logins enabled with terraform
I need to be able to create multiple iam accounts for my developer group with console login enabled using terraform
It's a bit tricky since we have to use keybase when enabling login profiles in ...
1
vote
1
answer
744
views
How to create multiple tables for authentication in django
There is anyway to create two user tables that can be authenticated in django one table will be used to register normal users and other admins but that can not be related with django.contrib.auth
...
1
vote
1
answer
990
views
Best practice for saving multiple users' data locally on device (Or is it necassary?)
My app has a chat feature, and the chats are held in SQLite. Currently this is an issue if multiple users use the same phone. Chats from all the users would show up in the past message areas, ...
1
vote
1
answer
125
views
Return department of user's manager?
I'm trying to gather some information for a clean-up effort on my company's vendor accounts. One of the bits we want is "what department is their manager in?"
My little script right now will return ...
1
vote
1
answer
3k
views
Installing Android Studio in a Computer Lab Environment with Individual Student Logins on OSX
I installed of Android Studio on the main administrator account, including downloading all the appropriate sdks, tools, etc. using the sdk manager, and further installing genymotion. After everything ...
1
vote
3
answers
5k
views
BASH script to add username, password and multiple groups
ASSUMPTIONS:
I have a file called users.txt
username:password:groups
user1:password:group1,group2,group3
user2:password:group3
user3:password:group1,group3
user4:password:group2,group3
CODE
#!/bin/...
1
vote
1
answer
2k
views
Is there any standard way to deal with user privileges in Java?
I have a Java program involving several users who need to have different privileges. I currently have a class with basic CRUD methods; each of which requires that the current user has permission to ...
1
vote
4
answers
942
views
Multiple SVN users with the same login credentials on a Unix machine
Here's our usecase for small projectets that rarely require attention from multiple developers at the same time:
Projects are on a shared Ubuntu dev server
Shared office account used to access the ...
1
vote
1
answer
545
views
Service running in a different timezone than windows (with a specific user)
I have a service running in windows that is running with a particular user, different than the one that I sue to log on to the server. And the service user, is using a different time zone than the ...
1
vote
1
answer
586
views
Exporting Users base on projects
Is there a way to export users based on project/teams? I need to create another team within another project but somehow I'm not able to add another project group to a different project
1
vote
1
answer
191
views
Obtain last password set date on visual basic script
I'm trying to get the last password date on vbs.
I'm using this code
On Error Resume Next
Wscript.Echo Day(now) & "/" & Month(Now) & "/" & Year(Now)
strComputer = &...
1
vote
1
answer
1k
views
How to lock environments in a multi-user Conda install?
I'm managing a multiple user Conda installation. I want to provide a few basic environments, e.g. base, Tensorflow 1, Tensorflow 2, etc. that users can clone if they need more specific environments.
...
1
vote
1
answer
185
views
App Ownership Transfer - User's Perspective
We have a app which is listed under a google account and the existing Google Account Holder is no longer supporting the app and wants us to take ownership.
They will fill the form to transfer the app ...
1
vote
2
answers
938
views
How to create multiple instances of nodejs server
I am building a notification application in which every time an event is triggered the associated user gets a notification. I am using localstorage of NodeJs to store the information of the logged in ...
1
vote
1
answer
1k
views
Execute playbook with different sudo users on different hosts
There are two hosts in the host list DEV and QA host
I need to execute playbook with dev_sudo_user for development env and qa_sudo_user for QA environment parallely
inventory details
[hostlist]
...