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
Airflow 2.0.1 filter DAGs by owner
How can I restrict the DAGs that are related to a particular owner in airflow 2.0.1?
I have enabled the
enter image description here

Pradeep Reddy
- 3
- 1
0
votes
0 answers
How do I run ansible-playbook on a private IP?
I have a task to install Docker on a private ip. There are two azure virtual machines, one with a public IP, the other with a private one. How to start a playbook from the first machine to the second?
The first virtual machine…

Мілан Бзовий
- 1
- 2
0
votes
1 answer
TypeError: create_user() missing 2 required positional arguments: 'email' and 'password' in Django Rest Framework
I am trying to create a superuser with email and password only but I am getting the above error.
After running py manage.py createsuperuser , it asks for admin and password only and I provide respective fields but after bypassing password validation…

Reactoo
- 916
- 2
- 12
- 40
0
votes
1 answer
Getting an error when creating Superuser in Django
File "C:\Users\Name\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django\dispatch\dispatcher.py", line 179, in
for receiver in self._live_receivers(sender)
TypeError: create_profile() missing 1 required positional argument:…

Vancityuwu
- 1
- 1
0
votes
1 answer
PyCharm PermissionError
I have a little problem with pycharm permission. I wanted to run my script but then appears a permission error. I used the package pythonping to ping a proxy address. I can run the script over the terminal in MacOS with the sudo command but i wanted…

dontoronto
- 51
- 1
- 8
0
votes
1 answer
Django getting superuser to use in a model class
I want to get all users information to set up user profiles including superuser, but somehow my code doesn't get superuser data . Please have a look
from django.contrib.auth.models import User
from django.db import models
class…

Knight
- 55
- 2
- 7
0
votes
1 answer
Django Superuser cant change user permission - change user type to staff
I am creating a Django Project with python 3.6 & Django V 2.2 . Now in the Django Admin panel ( Super User) cant convert a user type to staff . also it is not able to edit some user fields also. I have tried DB.Sqlite on my Local Host and…
0
votes
1 answer
How do I change superuser setting for Android Studio which I intalled using SNAP
I recently installed Ubuntu 20.04.1 and I installed Android Studio to develop some applications using Flutter. Everything was fine but for this app which I develop I invoke some packages that require me to migrate to AndroidX. I followed the steps…

dramaticlook
- 653
- 1
- 12
- 39
0
votes
0 answers
Android: Root -> Give app permission -> Unroot? Does an app loose permission granted by su after unrooting the phone?
App.apk programatcially runs the command: Runtime.getRuntime().exec("screenrecord", "--time-limit 5", "/sdcard/demo1.mp4")
To do so, It requires permission, which also requires rooting the phone to give this app permissions.
The problem is rooting…

EEAH
- 715
- 4
- 17
0
votes
1 answer
Android: why does running adb shell commands from pc and USB debugging doesn't required permission?
Programatically running : getRuntime.exec("screencap", "-p /sdcard/image.png") does not do anything except exiting with code=1.
But when USB debugging, running that same command from pc in cmd: adb shell screencap -p /sdcard/dddd.png works.
From…

EEAH
- 715
- 4
- 17
0
votes
2 answers
Create a permission in Django that can be optionally applied to superusers
I want to create a permission (or something that achieves the same thing) that can be applied to all users optionally, including super users.
I can create a custom permission very easily:
ct =…

MDalt
- 1,681
- 2
- 24
- 46
0
votes
2 answers
Can't connect to mysql aws RDS - 10060 odbc logged error
I'm trying to debug an ODBC connection failing to a MySQL instance on aws rds. The connection works on all but a single machine. This machine is connected to large financial systems network, so I assume it would be the firewall.
So far,…

donnyc
- 5
- 3
0
votes
3 answers
Can't log into a commandline created superuser using Django but account gets created
I have created a superuser that i can't log into, using the docker-compose.yml commands:
sh -c "sleep 5 &&
#
echo A-fj... create superuser acct... &&
echo DJANGO_SUPERUSER_PASSWORD=$DJANGO_SUPERUSER_PASSWORD &&
echo…

Fred
- 129
- 2
- 11
0
votes
0 answers
How to emulate Pcie region as persistant memory?
i want to emulate my pcie device region as persistant memory. i did find how to emulate DRAM to test code with PMDK library(link below). I want to test it on my PCIe device BAR. How to do it??
https://pmem.io/2016/02/22/pm-emulation.html

Rahul K V
- 41
- 4
0
votes
1 answer
How do I make a webpage be different for a superuser and a normal user on django?
Let me explain a little, I'm trying to make a website just for practicing, in which you have two sides, customer-side, and admin-side, so I want to make certain pages display certain functions when you are logged in as an admin, and to not display…

Hernan G
- 13
- 2