Linux Programmer | RHCE | RHCSA

Search This Blog

Wednesday 18 July 2018

X11Forwarding with SSH not working when connect user through Ncomputing device ?

X11Forwarding with SSH not working when connect user through N-computing device ?
Issue Description:

Install N-computing Server in one linux machine.
Trying to connect another user through Ncomputing client using Vspace.

User logged in successfully but when the connected user tried to connect another machine through ssh using X11forwading then it is not working .

For e.g.

$ ssh purval@192.168.1.76 -CX

then it take some time to login and after 1 or 2 minute it will logged in successfully.

but when we try to open some GUI application then it wont open.

Solution:

1. Logout the SSH session
2. run below command with normal user
      $ xhost +
3. Login user using SSH with -CX and try to open application.

it works !!


if you enter $xhost command it will show output like,

access control disabled, clients can connect from any host

$xhost - will remove the xhost access control which you have set.

About Xhost

xhost is a server access control program for X. It is used to add and delete host names or user names to the list allowed to make connections to the X server. In the case of hosts, this provides a rudimentary form of privacy control and security. It is only sufficient for a workstation (single user) environment, although it does limit the worst abuses in other cases. Environments which require more sophisticated measures should implement the user-based mechanism or use the hooks in the protocol for passing other authentication data to the server.


Thank you,



No comments:

Post a Comment

SSH not working with password after upgrade ubuntu 22.04

Issue: In recent upgrade of ubuntu 22.04 we are not able to login server with SSH password. but when we try to login with key then it allow...