You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 26, 2020. It is now read-only.
Hi, you have an unneeded depency to rpcbind service in your systemd unit file:
[Unit]
Description=GlusterD2, the management service for GlusterFS (pre-release)
Requires=rpcbind.service
After=network.target rpcbind.service
Before=network-online.target
Conflicts=glusterd.service
Please change this to:
[Unit]
Description=GlusterD2, the management service for GlusterFS (pre-release)
After=network.target
Before=network-online.target
Conflicts=glusterd.service
As rpcbind is only needed if you want to access glusterfs via nfs, which is as far as I am aware ganeschas job. The depency opens an unneeded port for an unneeded service which leads to unneeded security risks.
regards
Hans
The text was updated successfully, but these errors were encountered:
Hi, you have an unneeded depency to rpcbind service in your systemd unit file:
Please change this to:
As rpcbind is only needed if you want to access glusterfs via nfs, which is as far as I am aware ganeschas job. The depency opens an unneeded port for an unneeded service which leads to unneeded security risks.
regards
Hans
The text was updated successfully, but these errors were encountered: