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
0
votes
1 answer
Running node (ffmpeg) on linux produces Error: spawn EACCES
So I'm using a nodejs frontend app on android (Arm v7a) to run ffmpeg, especially fluent-ffmpeg, the problem here is that when I run a command the console just says "error spawn /ffmpeg eacces", yes, I moved ffmpeg to the root partition and I tried…
0
votes
1 answer
I can't create super user
I am building my website with Django. I need to create a super user but there is a huge error after I enter the user, mail, password. Without a super user, I will not be able to continue developing the project, therefore, I ask for…

Mr Pip
- 1
0
votes
0 answers
why my spring boot project trying to connect at may postgresql database with my windows user and not my superuser?
Good evening,
I have created a project with spring and i'm trying to do connection with my postgresql database with this configuration
But when i execute my program , i have this issue:
fabie is my windows user and not my superuser.
why my…

Fabeyene
- 21
- 1
- 3
0
votes
1 answer
How to grant su permission to app after unroot?
What I want:
I want my app to use su command to take screenshot in background even after I unroot the phone.
code example:
val process = Runtime.getRuntime().exec("su")
val outputStream =…

AloneWalker
- 59
- 6
0
votes
1 answer
change superuser password in django
I tried to change my admin password but I have an error while running user = User.objects.get(username='normaluser')

Rami
- 21
- 9
0
votes
0 answers
Create superuser error, TypeError: create_superuser() missing 1 required positional argument: 'name'
When i run createsuperuser command in terminal ..it prompts to enter email and then password .I didn't get the username field. After entering password it gives me TypeError: create_superuser() missing 1 required positional argument: 'name'.
Here is…
0
votes
0 answers
UserProfile not creating in custom model using User model as OneToOneField(User)
I am creating the super user through admin panel or command line, but it is not showing in the custom model in the database.
models.py
from django.db import models
from django.contrib.auth.models import User
# Create your models here.
class…

Vansh_Chaudhary
- 75
- 6
0
votes
2 answers
Wagtail superuser unable to log in to CMS
I'm new to Wagtail and django. I've completed the https://learnwagtail.com/wagtail-for-beginners/ course and managed to get my site up and running on Digital ocean, however I'm unable to login to the admin area. I have tried using the superuser…

SilentDesigns
- 505
- 2
- 7
- 22
0
votes
0 answers
Copy-item Powershell not working on windows 11
I executed this copy-item command line on windows 11:
Copy-Item -Path '//c/shared/file.xml' -Destination '\\REMOTE-PC\c$\testFolder' -Force
and It gives me unauthorized access message.
My user has full control and the same line command is working…

Primoshenko
- 140
- 1
- 9
0
votes
0 answers
How to force-stop a protected package?
I know the commands am force-stop com.my.app and am kill com.my.app that should stop a running app through the root terminal (using su command)
But know I have an app that refuse to stop after I kill her because she is a protected package And I get…

The student
- 101
- 2
0
votes
1 answer
How to create superuser in yugabyte sql cloud cluster?
I created a yugabyte cloud cluster (free one). But cannot get access to any superuser account.
when i create cluster with default creadentials i.e. 'admin' as user and run
SELECT rolname, rolsuper, rolcanlogin FROM pg_roles;
it returns
…

Ayan Dhara
- 54
- 7
0
votes
0 answers
Install PostgreSQL extension for non-superuser
My app's database has a dedicated user with full access like so;
CREATE DATABASE "mydb"
WITH OWNER = cloudsqlsuperuser
ENCODING = 'UTF8'
TABLESPACE = pg_default
LC_COLLATE = 'en_US.UTF8'
LC_CTYPE = 'en_US.UTF8'
…

Mr. Developerdude
- 9,118
- 10
- 57
- 95
0
votes
0 answers
Why can't create superuser
how can I solve this problem in django[duplicate admin showing][1]
"raise ImproperlyConfigured(
django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: admin"
0
votes
1 answer
can not login in production /django
I successfully deployed my django webapp but now I am unable to login as superuser even if I put correct credentials
Screenshot

Virus Programmer
- 5
- 3
0
votes
0 answers
Django customed user model createsuperuser error
I'm newb to python django. I am making a small web page. Here is a piece of code i'm running.
I want to make cumtom user model and use it to resigter with music genre, instrumet and nickname.
But with this code, even i did all the migrations, …

Sangwon
- 1
- 1