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.
Related
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.
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 am a complete beginner with Linux. I have ssh access (I think that's what it is) to a linux server. I have a program called SpagoBI installed on the server, and it needs to be accessed through localhost:8080 in a browser. I have changed the xml file that points to localhost to the ip of the server but I still can't access it. Does anyone have any suggestions on how to access the localhost through the ip?
With SpagoBI configured to answer on localhost (the default), you can use Putty on Windows create an SSH tunnel from your local system to the SpagoBI system. If you were to redirect local 8080 (of your local system) to 8080 of the SpagoBI system, then you could access the remote SpagoBI server like this http://localhost:8080/SpagoBI while the SSH tunnel is up.
Now... to configure the SpagoBI server correctly so that it answers on a specific FQDNS... you'll need to modify the Tomcat server.xml
Go to the Tomcat config directory and edit server.xml. These are two entries you'll need to modify. Then restart tomcat and try to access SpagoBI using the FQDNS and URL.
<Environment name="spagobi_service_url" type="java.lang.String" value="http://spagobi.example.com:8080/SpagoBI"/>
<Environment name="spagobi_host_url" type="java.lang.String" value="http://spagobi.example.com:8080"/>
After restart, try accessing SpagoBI like http://spagobi.example.com:8080/SpagoBI
I hope I understood. Do you write "localhost:8080" on your remote windows machine? If so, you should write the SpagoBI's address instead of localhost.
If you already doing so, I see on SpagoBI troubleshooting that you should try with http://serverIP:8080/SpagoBI/servlet/AdapterHTTP?PAGE=LoginPage&NEW_SESSION=TRUE.
I would check that 8080 port is open on firewall anyway.
If you have access to the GUI on server I would try to open in a browser that http://localhost:8080 is actually working at least locally.
Check whether the spagoBI is working in linux server or not. If not follow these steps: http://www.2daygeek.com/spagobi-5-0-release-notes-installation-steps/
If it's working in linux server, it can be opened in you windows system with the url:http://ipaddress of linux server:portnumber/SpagoBI.
So, I just enabled Firewall on my MacOSX Lion machine which runs the gitolite server and git can no longer connect to remote from other machines in the same home network.
More Info: I've kept the ssh standard port open the server machine.
I also found this http://www.42.mach7x.com/2011/07/12/using-gitolite-in-a-non-standard-ssh-port/. But it does not apply to me as I have the standard port open.
What could I be missing?