Could anyone please give me the command to get the list of all services running on an ESXi host?
ESXCLI can be used for this, example:
esxcli system process list
Alternatively, there's also this: https://kb.vmware.com/s/article/1010993
Related
I have to set a development environment on a ubuntu machine(16.04).
It's django+postgresql+Nginx, I.think I could install all these things together on that machine,but I totally don't have any idea about how to connect it by using pycharm running on my pc, and how to manipulate the database.
Is there anyone could tell me how to connect it. This is the first time I have to use a remote machine.
By the way, my pc and ubuntu machine are in the same LAN, but there is another person who were asked to write db are not.
I hope I could get some suggestions from the community.
One of the best and common way is to use SSH.
Here you can find an official guide on how to enable SSH server on Ubuntu 16.04
You can use Putty to connect from Windows PC to your SSH server or if you're using Mac or Linux, there should be already installed SSH client. So, just ssh username#servername
Use SSH. Assuming you're on Linux, open a terminal and type:
ssh username#local-ip-address-of-machine
and then type your password when prompted. Your terminal window essentially acts as a terminal on your remote machine. From here, I suggest you research Docker in order to set up a custom environment for your Django project. I have only told you how to connect since that's your question, and there are plenty of tutorials on setting up Django and Docker. If the other person wants to connect, you will need to port forward on your router port 22 on the local IP of the machine.
If you haven't got SSH set up, this page tells you how.
Vorlon dashboard is not showing all connected devices.
I have desktop and installed a Vorlon, I am using localhost of this desktop from laptop or ipad its displays webpage but it is not showing devices in vorlon, but it show if i open from the same desktop.
I was my bad. I am using localhost:1337 to load vorlon.js. We have to use ip address instead of localhost from other machine
There can be a few different problems at play here.
First you need to find the IP address of the computer that is hosting your application/site i.e. 192.168.10.4.
start vorlon
c:/> vorlon -v
start webserver, ensure you use the same IP address found above
c:/>python web2py.py --i 192.168.10.4 -p 8000
add script tag for vorlon
Both python and nodejs have to be allowed through the firewall, so next add rules for both the python executable you are using (which could be a virtualenv) and nodejs.
Finally you need to ensure that there are no other firewall rules that match the ports or applications you use, this is critical as I had a conflicting firewall rule for nodejs that was blocking the connection to nodejs and hence the script /vorlon.js cannot be found.
Hope this helps.
I am just getting started with Drools and on a linux EC2 instance and trying to run the examples: runExamples.sh but it needs an X11 display. So how do I configure this to display from the instance to my windows laptop, or run the examples script in command line mode? Or is there another simpler example that I can run to get started?
You can use the X-server of another node in a network by
$ export DISPLAY=<hostname>:0.0
Replace <hostname> with the host name when it is known to the localhost (add this to /etc/hosts) ir the IP address.
Hi I am beginner to puppet. I have setup learning puppet VM with virtual box 4.3.7 on win 7. Other puppet commands are running properly, but I am unable to access Puppet enterprise web console.
I have tried it using "https://ip_address_of_vm" on a web browser on win 7. I have tried to ping that ip address on command prompt, still its not connecting to it.
What should I do? Any kind of help is appreciable.
Make sure that the NIC is set to 'bridged' mode in VMWare/Virtualbox.
Also, can you ping the ipaddress?
To get mine to work, I changed my VirtualBox VM network settings to 'Host-only Adapter'.
facter ipaddress then returned a working IP.
I am running OSX 10.8.5 and VirtualBox 4.3.8
I would like to use vagrant and let the virtual machine run on a more powerful server than my laptop.
Is it possible to use Vagrant with a remote Virtualbox ?
With the current Virtualbox provider it's not possible.
Possibly you can roughly accomplish the same with different providers, like AWS or Rackspace.
Looks like vagrant share is what you need, but I didn't test it.