LoginSignup
2
2

More than 5 years have passed since last update.

Packstack --allinone with Fedora 20 (2014/02/26)

Last updated at Posted at 2014-02-26

2014/02/26現在、そのままではインストールできないのでメモ。

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

実行

$ sudo sh packstack_allinone_fedora20_20140226.sh
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2