Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
sudo yum -y update
sudo yum -y install yum-utils
sudo yum -y groupinstall development
sudo yum -y install zlib-devel bzip2-devel sqlite-devel, openssl-devel
cd /usr/local/src
curl -O https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tgz
tar xf Python-3.6.2.tgz
#!/bin/bash
#
# This script is used to setup netbox on a server running CentOS.
# Details at http://www.opentechshed.com/deploying-netbox-digital-ocean
#
### User Modifiable Variables ###
LOGFILE="/tmp/netbox-install.log"
PGCONF="/var/lib/pgsql/10/data/pg_hba.conf"
DBPASS=`date +%s | sha256sum | base64 | head -c 32`
NBADMIN='admin'
@gauravsabharwal
gauravsabharwal / openstack-mitaka-using-packstack.txt
Last active May 23, 2016 02:34
Install Openstack Mitaka on CentOS 7 running on vmware ESXi 5.5
My notes on how to get Openstack Mitaka all in one running on a CentOS 7 virtual machine within vmware.
Important: Ensure that promiscuous mode is enabled on the esxi. If promiscuous mode is not enabled, your instances won't be able to access the outside world and access via floating ip won't work.
Install
- Install CentOS Minimal
- Disable NetworkManager and firewalld
systemctl disable NetworkManager