My PC : Ubuntu 16.05
The server : Debian 8.4 Jessie
So far I've been using ssh to connect to remote Linux servers and interfere with them through the console.
Can I connect to the server and see and interact with the graphical environment?
Like we do on remote desktop connection on Windows.
Is this possible?
You can use NX technology or VNC to access the server with graphical environment.
Remmina is the default linux application, which is used to connect the remote server/PC from client.
Assuming the server has a graphical environment, then yes. You can install a VNC server on the server, and then use any VNC client to connect to it.
Related
I have an easy-one here, I'm new using linux to connect to other linux server, the issue is that on a remote server which I can reach from my vpn, I have a GUI running on the port x.x.x.x:6500
I did not have any problem using putty/xshell to make a tunnel to the server and then to see the GUI in my laptop using the localhost:6500.
I'm trying to do the same on my Manjaro VM but I'm having troubles to see the GUI since there. The page says connection refused...
I'm using the following command:
$ ssh -L 6500:127.0.0.1:6500 x.x.x.x -v
Maybe the command is wrong, that's not the correct syntax?
I need to VNC into a remote Debian server from my Mac to use Remote Console via an iLO-integrated Java Integrated Remote Console (IRC). I use Chicken of the VNC for that purpose. Is there any other open-source alternatives available? Thanks.
You can try to use "NoMachine" or "chrome remote desktop". it is not open-source products - free licence.
NoMachine - https://www.nomachine.com/
CRD - https://chrome.google.com/webstore/detail/chrome-remote-desktop/gbchcmhmhahfdphkhkmpfmihenigjmpp?hl=en
or you can use PORT forwarding from Linux to iLO IP. connect to Linux from MAC via ssh with tunnel and open iLO from MAC browser
I have access to a server running CentOS 6.7 on which I installed apache and configured the /etc/httpd/conf/httpd.conf file.
I can see the webpage if I ssh to the server and run
$ lynx http://192.99.x.x
but I would like to access it using a real browser. If I try to access it from my computer, it tells me that this webpage is unavailable and if I try to run firefox on the CentOS terminal, I get error: No Display specified.
Is there a way to see the webpage in a browser without port forwarding ?
Without port forwarding, you will need to setup X11 forwarding in SSH. This will allow you to open graphical applications remotely. Below is a link to configure X11 forwarding for SSH.
X11 Forwarding with SSH
CentOS 6 SSH Configuration
I have created a sample Django admin page which will do some basic insert update in my local machine.
Now I have installed Django 1.7.7 and python 2.7 in Linux Ubuntu server machine and it has firefox installed.
Is it possible, to connect with the server through any tunnel, so that from my system by python manage.py runserver localhost:port?
So that I can actually connect the server computer and can have the admin console page in server which I can access from my local system.
I know that I can do that by public IP but I dont know the server public ip address nor the domain name.
So any solution for this
The development server listens to 127.0.0.1 by default. In order to connect to your development server from another machine, you need to listen to all IP addresses. Try running the development server by
python manage.py runserver 0.0.0.0:8000
and connect to it from your other PC using:
http://server_ip_address:8000
I am new to Linux. I have installed qemu-kvm when I started it shows command
VNC server running on `::1:5901'
Can any one please tell me how can I can access vnc server I have real vnc server and viewer also
When the shell prompts VNC server running on ::1:5901
you can then use
virt-viewer vnc://localhost:5901
to connect the guest or you can open the remote desktop viewer (a GUI tool) to connect it by vnc protocol and localhost:1.
This works in my case, hope it will work for you too!
If you want to access you machine over vnc first thing you need to do is configure vnc to listen on all interface.
To do that enable/add vnc_listen = "0.0.0.0" in your /etc/libvirt/qemu.conf file and restart libvirtd. Now you can access you guest on yourkvmhostip:5901 through vnc.