How to connect in a domain via VirtualBox? - virtual-machine

So my PC is in a domain, but my virtual machine does not see it. I give the credentials in the Log in screen and I get this in the guest OS:
My host OS is Windows 7 and my guest OS is Windows XP and I use Oracle VirtualBox.
Thanks for the help.

Have you correctly linked all the virtual adapters?
If you can't ping the domain controller server, you should check your (virtual) cables.
Also, try to add the pc to a domain in the control panel.

Related

How could I access my VM in my host machine (By different IP)?

I want to access the virtual machine IP in the host (by ping or curl or something), but it is not ok. How could I make it?
The host machine is a win10 PC.
A virtual machine using VMware workstation 15, Ubuntu 16.04 server. It has IP address 192.168.178.138 and 10.0.0.11. I can access the 192.168.178.138, but cannot access 10.0.0.11. (no matter ping or curl...)
All are NAT mode in VMware Workstation.
Now I have a web application running on 10.0.0.11:80. How could I access it in my host machine.
Btw I have another VM with 192.168.178.39 and 10.0.0.31, and this VM can access the 10.0.0.11:80 by curl.
I can show the topo as below.
(A little Chinese but it won't affect reading, just ignore it)
Yes, now I solve this question by myself.
It seems that you cannot use the Host-only mode (Actually I can only use this mode...).
You need to set the virtual interface in your host PC (The IP, gateway, or anything else...);
Then you need to set in the VMWare workstation, set it to use speical lan (VM net 2 for me);
Then you can access it from the host machine and other vm, maybe you need to search something like NAT translation in VMWare workstation to access your web application deployed in the VM from outer network.
That's what I do, now I can access my horizon dashboard in the browser (The Ubuntu server don't have any browser... T-T sad ...)
Settings Picture

Connect Remotely to Centos installed on Vmware

I have CentOS7 installed on Vmware, and I'm able to access it through SSH from my computer where Vmware is installed. I need to access my virtual machine from another computer. Is this possible? and what are the steps to complete this?
It is possible. You need to bridge your network adapter with the one on the VM, and then it will be accessible the same way your PC is.

Can I run a server in a VM and then make requests to it in the host OS?

I'm developing a web application in Ubuntu run in VM Ware Player. The VM is hosted on my Windows 8.1 machine. I want to test the application in Internet Explorer, so is there any way I can make requests to the server and test the application from the host OS?
Yes you can. You need to check the ip address of your VM
type this in ubuntu terminal:
ifconfig
check what ip address it uses then you can access it through browser

view sharepoint site outsite the vmware workstation

I am running windows server 2008 in vmware workstation and there I have installed sharepoint 2010.
How can I view a sharepoint site from my host machine, so from my windows 7?
Any ideas? Thank you
It depends on the network configuration you assigned to your VM. If you didn't isolate your VM, you should be able to ping it from your host (assuming they share the same network settings - subnet mask, gateway, ip class, ...) and access your SharePoint site from the host.
Also make sure that the native firwall on your server is allowing inbound / outbound connection with the relevant port (at least :80).
Cheers.

Access Rails app from Fedora (guest virtual machine) in Windows XP (host)

I have installed Fedora 14 on Windows XP using VMware with NAT as ethernet type (since I need to access internet through wireless data card). I am using Fedora for Rails app development, which i can access using normal Webrick on http://localhost:3000
Any ideas on how to access the same app in the host Windows XP machine with Rails app server running on Fedora.
Did you try to connect via the IP-Address + port of the Fedora box? To find out the IP-Address use ifconfig and type it in your Windows-Browser, i.e. http://192.168.1.100:3030
If this fails, did you check your firewall settings on the Fedora box?
Use the 'bridged' or 'host-only' network types to get an IP address accessible to the host machine.