前提・実現したいこと
Ubuntu内にインストールしたLighttpdのユーザーをwww-dataユーザーからrootユーザに変更して、起動したいのですが、
単純に/etc/lighttpd/lighttpd.confのserver.usernameとserver.groupnameの値をwww-dataからrootに変更するだけだと
lighttpdを下記コマンドで起動するときに以下のエラーメッセージが発生しました。
# systemctl restart lighttpd Job for lighttpd.service failed because the control process exited with error code. See "systemctl status lighttpd.service" and "journalctl -xe" for details.
実行ユーザーをrootにするためには、webサーバの設定ファイル以外にも何か設定する必要があるのでしょうか。
また、起動できないということは、どこかで設定した実行ユーザのrootが起動プロセス
発生している問題・エラーメッセージ
実行ユーザをrootユーザに変更後にLighttpdを起動することができなくなってしまった。
# systemctl restart lighttpd Job for lighttpd.service failed because the control process exited with error code. See "systemctl status lighttpd.service" and "journalctl -xe" for details. # systemctl status lighttpd.service lighttpd.service - Lighttpd Deamon Loaded: loaded (/lib/systemd/system/lighttpd.service; enabled; vendor preset: enabled) Active: failed (Result: exit-code) since Wed 2021-02-10 05:38:40 JST; 1min 49s ago Process: 2256 ExecStartPre=/usr/sbin/lighttpd -tt -f /etc/lighttpd/lighttpd.conf (code=exited, status=255/EXCEPTION) 2月 10 05:38:40 localhost systemd[1]: lighttpd.service: Control process exited, code=exited, status=255/EXCEPTION 2月 10 05:38:40 localhost systemd[1]: lighttpd.service: Failed with result 'exit-code'. 2月 10 05:38:40 localhost systemd[1]: Failed to start Lighttpd Daemon. 2月 10 05:38:40 localhost systemd[1]: lighttpd.service: Scheduled restart job, restart counter is at 5. 2月 10 05:38:40 localhost systemd[1]: Stopped Lighttpd Daemon. 2月 10 05:38:40 localhost systemd[1]: lighttpd.service: Start request repeated too quickly. 2月 10 05:38:40 localhost systemd[1]: lighttpd.service: Failed with result 'exit-code'. 2月 10 05:38:40 localhost systemd[1]: Failed to start Lighttpd Daemon.
該当のソースコード
server.username = "root" server.groupname = "root"
補足情報(FW/ツールのバージョンなど)
Ubuntu 20.04.2
lighttpd 1.4.55
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/10 03:04
2021/02/10 03:50
2021/02/10 05:01
2021/02/10 05:07
2021/02/10 07:24