While troubleshooting another issue I found that lsof was outputting a ton of lines indicating:
lsof: no pwd entry for UID 911
Checking to see which PIDs were started by 911 I found a few of them (all rock-ons it appears):
[root@rockstor ~]# ps -ef | grep "911 "
911 4079 4061 1 11:58 ? 00:00:06 python -m homeassistant --config /config
911 5305 5302 0 11:58 ? 00:00:02 syncthing -home=/config -no-browser -no-restart --gui-address=0.0.0.0:8384
911 6384 6381 0 11:59 ? 00:00:01 /usr/bin/python2 /usr/bin/deluged -c /config -d --loglevel=info -l /config/deluged.log
911 6385 6380 0 11:59 ? 00:00:00 /usr/bin/python2 /usr/bin/deluge-web -c /config --loglevel=info
911 8338 8335 29 12:00 ? 00:01:41 /usr/lib/plexmediaserver/Plex Media Server
911 8452 8338 0 12:00 ? 00:00:02 Plex Plug-in [com.plexapp.system] /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py --server-version 1.9.7.4460-a39b25852 /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/System.bundle
911 8540 8338 0 12:00 ? 00:00:00 Plex Plug-in [com.plexapp.agents.plexthememusic] /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py --server-version 1.9.7.4460-a39b25852 /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/PlexThemeMusic.bundle
911 8541 8338 0 12:00 ? 00:00:01 Plex Plug-in [com.plexapp.agents.thetvdb] /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py --server-version 1.9.7.4460-a39b25852 /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/TheTVDB.bundle
911 8618 8338 0 12:00 ? 00:00:00 /usr/lib/plexmediaserver/Plex Tuner Service /usr/lib/plexmediaserver/Resources/Tuner/Private /usr/lib/plexmediaserver/Resources/Tuner/Shared 1.9.7.4460-a39b25852 32600 /waitmutex
911 8620 8338 0 12:00 ? 00:00:00 /usr/lib/plexmediaserver/Plex DLNA Server
911 8855 8338 0 12:00 ? 00:00:01 Plex Plug-in [com.plexapp.agents.plexmusic] /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py --server-version 1.9.7.4460-a39b25852 /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/PlexMusic.bundle
911 9081 8338 0 12:00 ? 00:00:01 Plex Plug-in [com.plexapp.agents.themoviedb] /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py --server-version 1.9.7.4460-a39b25852 /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/TheMovieDB.bundle
911 9219 8338 0 12:00 ? 00:00:00 Plex Plug-in [com.plexapp.agents.opensubtitles] /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py --server-version 1.9.7.4460-a39b25852 /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/OpenSubtitles.bundle
911 9262 8338 0 12:00 ? 00:00:01 Plex Plug-in [com.plexapp.agents.imdb] /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py --server-version 1.9.7.4460-a39b25852 /usr/lib/plexmediaserver/Resources/Plug-ins-a39b25852/PlexMovie.bundle
root 14649 6679 0 12:05 pts/0 00:00:00 grep --color=auto 911
[root@rockstor ~]#
Not sure what I am dealing with yet and if it’s actually a problem (looks like it… but I’m 2 days into using Rockstor so I cannot say for certain…).
Sean