无法以其他用户身份执行命令 - 即使是 root 用户

无法以其他用户身份执行命令 - 即使是 root 用户

我在名为 的用户中安装了 pm2 节点模块otheruser。我需要从root用户运行该程序。

如果我正常登录otheruser并执行任何操作,它就可以正常工作。

otheruser@bubble-server:~$ /home/otheruser/.nvm/versions/node/v5.2.0/bin/pm2 list
● Agent online - public key: xxxxxxxx - machine name: server - Web access: https://app.keymetrics.io/
┌────────────────┬────┬──────┬──────┬────────┬─────────┬────────┬─────┬───────────┬──────────┐
│ App name       │ id │ mode │ pid  │ status │ restart │ uptime │ cpu │ mem       │ watching │
├────────────────┼────┼──────┼──────┼────────┼─────────┼────────┼─────┼───────────┼──────────┤
│                                                                                            │
└────────────────┴────┴──────┴──────┴────────┴─────────┴────────┴─────┴───────────┴──────────┘

但是如果我以 root 或其他用户以外的任何其他用户身份登录,它不起作用。

root@server:~# su -s /bin/bash -c "/home/otheruser/.nvm/versions/node/v5.2.0/bin/pm2 list" otheruser
root@server:~#

其在系统日志中给出以下内容

server node[25227]: No AX.25 port data configured

相关内容