Skip to content

Instantly share code, notes, and snippets.

@michaelrice
Created March 21, 2015 23:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save michaelrice/e8b1bc36bcad510dc917 to your computer and use it in GitHub Desktop.
Save michaelrice/e8b1bc36bcad510dc917 to your computer and use it in GitHub Desktop.
VCSA Configration
#!/bin/bash
# See the original work from William Lam at http://www.virtuallyghetto.com/
## DO NOT EDIT BEYOND HERE ##
echo "Accepting EULA ..."
/usr/sbin/vpxd_servicecfg eula accept
echo "Setting default ports ..."
/usr/sbin/vpxd_servicecfg 'ports' 'defaults'
echo "Configuring Embedded DB ..."
/usr/sbin/vpxd_servicecfg 'db' 'write' 'embedded'
echo "Configuring SSO..."
/usr/sbin/vpxd_servicecfg 'sso' 'write' 'embedded' 'password'
#echo "Starting VCSIM ..."
/usr/bin/vmware-vcsim-start default
#echo "Starting VCSA ..."
/usr/sbin/vpxd_servicecfg service start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment