web-dev-qa-db-ja.com

シェルで新しいadmin webminユーザーを作成する

webminをインストールし、ログインするroot以外の新しいユーザーを作成するには、次の手順に従います。

  1. ファイル/etc/webmin/miniserv.usersを編集し、新しいユーザーの行を追加します

    anubhav:12ZVLjpihs:0
    
  2. ファイル/etc/webmin/webmin.aclを編集し、ルートユーザーの最初の行をコピーして同じファイルに貼り付け、ルートの名前を新しいユーザーに変更してファイルを保存すると、ファイルは次のようになります。

    root:access privileges
    anubhav:access privileges
    
  3. 新しいユーザーパスワード/usr/share/webmin/changepass.pl /etc/webmin anubhav mypasswordをリセットします。

  4. /etc/init.d/webmin restartからwebminを再起動します

  5. webminページに移動して、ログインユーザーの新しいユーザー名とパスワードを入力します。

20
Anubhav

加えて:RedHatディストリビューション(Fedora、CentOS、Gentooなど):

/usr/libexec/webmin/changepass.pl /etc/webmin admin newpassword

Debianディストリビューション(Debian、Ubuntoなど):

/usr/share/webmin/changepass.pl /etc/webmin admin newpassword

FreeBSD:

/usr/local/lib/webmin/changepass.pl /usr/local/etc/webmin admin newpassword

「admin」と「newpassword」を自分の詳細に置き換えてください。

3