通过 XDMCP 到 GDM 打开会话

通过 XDMCP 到 GDM 打开会话

我有一个 RHEL6 服务器,我们通过 XDMCP 连接。如果我启动 xdm ( xdm &) 它可以工作,但登录屏幕是旧的 xdm 简单登录而不是 gdm。我们的 RHEL5 服务器可以很好地连接到 gdm。问题是 GDM 没有运行。当我尝试启动 GDM ( gdm &) 时,它给出以下消息:

** (gdm-binary:3229): WARNING **: Couldn't connect to system bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory

我也尝试过使用 (gdm-binary &) 并得到相同的消息。

cat /etc/gdm/custom.conf
# GDM configuration storage
[daemon]
[security]
DisallowTCP=false
AllowRemoteRoot=true
[xdmcp]
Enable=true
[greeter]
IncludeAll=true
[chooser]
[debug]

在 /etc/X11/xdm/Xaccess 中,我有以下未注释的内容: * #any host can get a login window

在 /etc/X11/xdm/xdm-config 中,我尝试注释和取消注释以下内容: DisplayManager.requestPort: 0

我参考了几个教程,例如:

http://www.yolinux.com/TUTORIALS/GDM_XDMCP.html

http://kosala-linux.blogspot.com/2013/02/x-manager-configurations-for-rheloel.html

答案1

此警告:

** (gdm-binary:3229): WARNING **: Couldn't connect to system bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory

表示系统D-Bus消息总线没有运行。 D-Bus 提供程序可用于与其他程序通信的消息总线:通常有一个系统消息总线和每个用户会话的消息总线。

messagebus在 RHEL 上,系统消息总线由软件包提供的 init 脚本启动dbus

要启动系统消息总线,您必须安装该dbus软件包,并且可能会发出service messagebus restart.

相关内容