This tag does NOT refer to the Super User SE site. Use to distinguish those acting with top/high level admin system privileges from other users.
Questions tagged [superuser]
190 questions
1
vote
0 answers
How to run Qt Android application as superuser?
I'm using qserialport on my android app and the debugging information shows me that it can't create lock file (permission denied), then opening serial has failed. I need to run my app as superuser on Android to fix this permission problem.

amin khozaei
- 431
- 3
- 7
1
vote
1 answer
why docker machine always open in super user mode?
I am learning docker currently.
one thing that I noticed is that whenever I create a new machine using command :
docker-machine create --driver virtualbox default
& after running this command, if I start my docker-machine using:
docker start…

Bhushan Gadekar
- 13,485
- 21
- 82
- 131
1
vote
1 answer
Autocreate superuser with each schema django
I'm working on a multi tenant app using django-tenant-schema(and postgresql). Now as soon as the new schema is getting created, I'm using the call_command to create a superuser. I also thought of the option of using signal post_migrate.
My doubt is…

SG2791
- 35
- 6
1
vote
2 answers
Allow Super User permission programmatically
I want to use shell command for my app as root permission. I put in my manifest:
I want to know if there is a way to allow Super User permission programmatically without using…

Daniele
- 668
- 2
- 10
- 25
1
vote
1 answer
Check su exists i.e. Device is rooted or not
This question is possibly a duplicate but I have gone through all the answers and noticed that they won't be working anymore.
private static boolean checkRootMethod1() {
String buildTags = android.os.Build.TAGS;
return buildTags != null &&…

Dayvon
- 87
- 2
- 11
1
vote
0 answers
Android - copy entire directory including symlink
I'm trying to copy an applications entire data directory,
I'm using the following su command:
String sBackupData = "cp -rp /data/data/ /data/sdext2/backup/";
this copies & retains file permissions/ownership, however I am unable to…

nerotech
- 49
- 1
- 7
1
vote
1 answer
Error: Failed to retrieve directory listing FileZilla
I am trying to connect with Our application server to get access of FTP, But when I tried to access it with the help of FileZilla getting following stack trace.
I am able to see complete folder structure in CPanel. Can you help to and do let me…

Krishnakant
- 1,453
- 3
- 18
- 30
1
vote
0 answers
Order of resolving in Windows search PATH
I have more than 40 folders are added into search PATH on my Windows 7 machine. I used to put Python environment in the User PATH. Yesterday the system can't find python.exe suddenly... I tried to move the folder path to System PATH and the problem…

aaronzs
- 69
- 7
1
vote
3 answers
Django createsuperuser cannot enter password
I am learning django, and I have a mysite folder. When I synced the database it prompted me to create a superuser. I typed yes, and got halfway through the forms but I couldn't enter any characters when it wanted a password. I searched google and…

pengowen123
- 1,007
- 1
- 12
- 23
0
votes
0 answers
How to remove access of tables in pg_catalog for a user?
I am trying to create a view for the prod table for a client where he must only
have access to views.
I was able to restrict the user to have access to views and not to the table. But in postgres there is a concept of system catalog, where there are…

Logan
- 11
- 3
0
votes
1 answer
Pycharm is not allowing me to make a password for a super user on my Django project
I am trying to create a superuser on the terminal on pycharm but It's not typing anyting when I try to create a password for that superuser in the terminal.
I tried to recall the command "python manage.py createsuperuser" a few times but I still ran…

Razi
- 1
- 1
0
votes
1 answer
read only user is able to "set role" back into super user
I have two users running on my databse, the "superuser" and then "readonly" user.
If I log into the database as "readonly" I am not able to use "set role" and "set authorization" as expected.
However if I log into the database as "superuser" and…

mar91
- 73
- 6
0
votes
0 answers
C# AspNet Core: have multiple users log in on the same session as a ''superuser''
Environment: .NET 7 Blazor app.
Imagine the following scenario: because of very strict security considerations, changes made to a B2B customer's environment cannot just be done because someone higher up in that company with the right permissions…

Lucas
- 199
- 1
- 11
0
votes
0 answers
Is the server running on that host and accepting TCP/IP connections?&
I am trying to create a superuser via:
sudo docker-compose up
python3 manage.py createsuper user
In a minute i get this:
django.db.utils.OperationalError: connection to server at "8500" (0.0.33.52), port 5432 failed: Connection timed out Is the…

Serafim BE
- 1
- 1
0
votes
0 answers
How can I configure my Django application to use separate databases for different superusers?
How can I create multiple databases in my Django project, where each superuser has access to their own database but not to other databases (even in the dashboard)?
I have tried to create multiple databases in setting.py and models.py but it is not…

kavya k
- 1