# su -l www-data ./http-app.py
This account is currently not available.
# su -l www-data -c ./http-app.py
This account is currently not available.
# su -c ./http-app.py www-data
This account is currently not available.
# su -lc ./http-app.py www-data
This account is currently not available.
# getent passwd www-data
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
# getent shadow www-data
www-data:*:16842:0:99999:7:::
# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 8.6 (jessie)
Release: 8.6
Codename: jessie
Was ist los mit meinem su
oder www-data
? Früher hat es funktioniert ...
Vermutlich liegt das an dem /usr/sbin/nologin
, aber wie kann ich dann root
für dieses eine Skript aufhören, ohne andere Dienste auf dem System zu beeinträchtigen ( nologin
wurde vom Debian
Team aus einem guten Grund ausgewählt, möchte ich glauben)?
/bin/sh
standardmäßig verwendet wird, und Sie müssen die-s
Option nur angeben, wenn Sie zu/bin/bash
oder ähnlich wechseln möchten .