For those wondering how to configure their xstartup file in fedora to launch an xfce session in vncserver, here it is:
#!/bin/sh
#
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
# exec /etc/X11/xinit/xinitrc
#
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
xfce4-session &
Yesterday I did this after much googling (I already knew how to do it in Ubuntu/Debian) and false starts including xrdp, which I could only get to launch gnome desktop, a resource hog on my severely constrained old pc. The capper was remembering to append :1 to the ip in the vnc client. After all this fiddling my keyboard stopped responding, though the mouse continued to work. After a reboot got the keyboard back.
EDITED: 6 May 2020 12:52 by DSMITHHFX