设置IPC参数(首次需配置)
步骤1 以root用户登录操作系统。
步骤2 进入/etc/systemd/logind.conf文件,查看是否已经设置了RemoveIPC=no,如果没有则执行步骤3,否则跳过。
cat /etc/systemd/logind.conf
步骤3 (可选)修改/etc/systemd/logind.conf文件中RemoveIPC=no。
echo "RemoveIPC=no" >> /etc/systemd/logind.conf
步骤4 进入/usr/lib/systemd/system/systemd-logind.service文件,查看是否已经设置了RemoveIPC=no,如果没有设置则执行步骤5,否则跳过。
cat /usr/lib/systemd/system/systemd-logind.service
步骤5 (可选)添加RemoveIPC=no到/usr/lib/systemd/system/systemd-logind.service文件。
echo "RemoveIPC=no" >> /usr/lib/systemd/system/systemd-logind.service
systemctl daemon-reload
systemctl stop systemd-logind
systemctl start systemd-logind