Skip to content

Instantly share code, notes, and snippets.

@umireon
Created February 26, 2014 14:22
Show Gist options
  • Save umireon/9230301 to your computer and use it in GitHub Desktop.
Save umireon/9230301 to your computer and use it in GitHub Desktop.
Packstack --allinone with Fedora 20 (2014/02/26) ref: http://qiita.com/umireon/items/b395a1aa3c0f056472cd
$ sudo sh packstack_allinone_fedora20_20140226.sh
#!/bin/sh
# disable selinux
sed -i -e '/^SELINUX=/c\SELINUX=permissive' /etc/selinux/config
setenforce Permissive
# disable firewalld
systemctl disable firewalld
# ensure up to date
yum -y update
# install mariadb prior to packstack
yum -y install mariadb-server
# and create the missing log file
touch /var/log/mysqld.log
chown mysql:mysql /var/log/mysqld.log
chmod 640 /var/log/mysqld.log
# install packstack
yum -y install openstack-packstack
packstack --allinone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment