2017年9月28日木曜日

VagrantでDrupal8.3.7とPostgreSQLがインストールされた仮想マシン(Ubuntu16.04)を構築する

以下のVagrantfileを使用してDrupalとPostgreSQLがインストールされた仮想マシンを構築する事ができます。
仮想マシンが構築された後、http://192.168.55.107/drupal/にアクセスして、Drupalを構成します。
データベース名:drupal、ユーザ名:drupal、パスワード:drupalを指定します。

Vagrantfile

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/ubuntu-16.04"
  config.vm.hostname = "ub1604drupal837"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "ub1604drupal837"
     vbox.cpus = 2
     vbox.memory = 2048
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
  config.vm.network "private_network", ip: "192.168.55.107", :netmask => "255.255.255.0"
  config.vm.network "public_network", ip:"192.168.1.107", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
# update packages
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade
apt-get -y install unzip

# install postgresql
apt-get -y install postgresql 
echo "listen_addresses='*'" >> /etc/postgresql/9.5/main/postgresql.conf

echo "host    all         all         127.0.0.1/32          password" >> /etc/postgresql/9.5/main/pg_hba.conf
echo "host    all         all         192.168.1.0/24          password" >> /etc/postgresql/9.5/main/pg_hba.conf
echo "host    all         all         192.168.55.0/24          password" >> /etc/postgresql/9.5/main/pg_hba.conf

su - postgres << EOF
createdb -T template0 --locale=C --encoding=UTF8 drupal
ALTER DATABASE drupal SET bytea_output = 'escape';
alter user postgres with password 'postgres';
create user drupal with password 'drupal';
grant all privileges on database drupal to drupal;
"
EOF
echo "postgres:postgres" | chpasswd
systemctl restart postgresql.service
systemctl enable postgresql.service


# install apache2 kanboard
apt-get -y install php7.0 libapache2-mod-php7.0 apache2 php7.0-mbstring php7.0-pgsql php7.0-gd php7.0-curl php7.0-dom

wget https://ftp.drupal.org/files/projects/drupal-8.3.7.tar.gz
tar xvfz drupal-8.3.7.tar.gz
mv drupal-8.3.7 /opt/drupal

chown -R www-data:www-data /opt/drupal
sudo ln -s /opt/drupal/ /var/www/html/

cat << EOF >> /etc/apache2/apache2.conf

  AllowOverride All
  RewriteEngine on
  RewriteBase /
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

EOF
a2enmod rewrite
systemctl restart apache2 

echo 'access http://192.168.55.107/drupal/'
echo 'db:drupal user: drupal, password: drupal'
SHELL
end

Durpalのインストーラー画面1


Durpalのインストーラー画面2


Durpalのインストーラー画面3


Durpalのインストーラー画面4


Durpalのインストール完了画面



○関連情報
・Drupalに関する他の記事はこちらを参照してください。

0 件のコメント:

コメントを投稿