Created
February 26, 2014 14:22
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo sh packstack_allinone_fedora20_20140226.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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