Skip to content

Instantly share code, notes, and snippets.

@pathcl
Forked from michaelrice/configure_vcsa.sh
Last active October 5, 2016 14:07
Show Gist options
  • Save pathcl/d826c1bde30d6cf450f7c37dcdf305d0 to your computer and use it in GitHub Desktop.
Save pathcl/d826c1bde30d6cf450f7c37dcdf305d0 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