Hangl's Accepted Solutions

This seems to be a known issue. Please try the method described at https://kb.vmware.com/s/article/79640
I think it is located in /usr/lib/systemd/user/dbus-broker.service on RHEL9 with the following command,     systemctl --user status dbus ○ dbus-broker.service - D-Bus User Message Bus Loaded:... See more...
I think it is located in /usr/lib/systemd/user/dbus-broker.service on RHEL9 with the following command,     systemctl --user status dbus ○ dbus-broker.service - D-Bus User Message Bus Loaded: loaded (/usr/lib/systemd/user/dbus-broker.service; enabled; vendor preset: enabled) Active: inactive (dead) TriggeredBy: ● dbus.socket Docs: man:dbus-broker-launch(1)      
Just wanted to update this. I've made a fix and it will be released in Horizon-2206-8.6.0.
Seems GDM failed to start with XDMCP. You can restart GDM by sudo systemctl restart gdm3 And then check if XDMCP enabled by GDM by sudo lsof -i:xdmcp  If it still doesn't work please try to rebo... See more...
Seems GDM failed to start with XDMCP. You can restart GDM by sudo systemctl restart gdm3 And then check if XDMCP enabled by GDM by sudo lsof -i:xdmcp  If it still doesn't work please try to reboot and see if GDM can be back to work with XDMCP.
Hello Khosrof, Please save the following to the file /etc/profile.d/vmware-lang.csh which is the csh script equivalent of vmware-lang.sh and has been tested in my lab.   if ( $DISPLAY =~ 127.0.0.1... See more...
Hello Khosrof, Please save the following to the file /etc/profile.d/vmware-lang.csh which is the csh script equivalent of vmware-lang.sh and has been tested in my lab.   if ( $DISPLAY =~ 127.0.0.1:* ) setenv DISPLAY ${DISPLAY:s/127.0.0.1//} set desktopInfoFile="/var/vmware/vmw_desktop/vmw_desktopid.${DISPLAY:s/://}" if ( -f "$desktopInfoFile" ) then set language=`grep -i -m1 "LANG=" $desktopInfoFile` && setenv ${language:s/=/ /} endif unset desktopInfoFile unset language