X11-Forwarding allows you to execute graphical programs remotely and forward the display to your local machine. This can be done via SSH and requires specific permission and configuration.
You could be switching your user to other users such as root if you're doing system administration work, and X11-Forwarding will fail with Can't open display, or X11 connection rejected because of wrong authentication errors.
$ sudo xclock [sudo] password for user: X11 connection rejected because of wrong authentication. Error: Can't open display: localhost:10.0
This is because X11-Forwarding using SSH requires the correct value for ~/.Xauthority file and DISPLAY environment variable, which is only automatically set for the users directly connecting to the remote host, and not for the user that the initial user switches to.
$ ssh -X remote-host user@remote-host's password: Welcome to Ubuntu 20.10 (GNU/Linux 5.8.0-26-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage 0 updates can be installed immediately. 0 of these updates are security updates. Last login: Sun Nov 1 21:17:13 2020 from 192.168.111.27
$ xauth list $DISPLAY host/unix:10 MIT-MAGIC-COOKIE-1 742d024faeb3d29a15ff06f1b8c3b21e
This info is stored in ~/.Xauthority file.
$ cat ~/.Xauthority host10MIT-MAGIC-COOKIE-1t-O��Қ��ò
$ echo $DISPLAY localhost:10.0
$ sudo su - [sudo] password for user: root@host:~#
# xauth add host/unix:10 MIT-MAGIC-COOKIE-1 742d024faeb3d29a15ff06f1b8c3b21e
# cat ~/.Xauthority host10MIT-MAGIC-COOKIE-1t-O��Қ��ò
# export DISPLAY=localhost:10.0
# xclock
Comment anonymously. Login not required.