1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Drupal8]Cloud9にDrupal8をインストールする

Last updated at Posted at 2017-08-30

はじめに

下記の記事をもとに作業しました。

Cloud9にDrupal8をインストールする
http://www.tinybeans.net/blog/2017/01/15-160915.html

実際に実施した手順のポイントは以下です。

1. Cloud9にWorkspaceを作成する

  • Templateはphp, Apache...を選択

2. データベースを作成する

Cloud9のbashで操作

MySQLの起動・入力画面への切り替え

$ mysql-ctl cli

Cloud9で mysql を操作するために mysql-ctl というコマンドが用意されています。
mysqlサーバーの起動/停止/状態確認/再起動 そしてcli(Command Line Interface)というサブコマンドがあります。
cliを使ってDBを作ったり、新しいテーブルを作ったりすることができます。
http://wpwand.com/cloud-mysql-ctl-command/

データベース作成

mysql> create database drupal_8 character set utf8;
  • データベース名は任意
  • show databases;で、データベースができていることを確認する

MySQLを抜ける

mysql> exit

3. Drupal8をインストールする

Drupal8をダウンロードして展開

$ wget https://ftp.drupal.org/files/projects/drupal-8.2.5.tar.gz
$ tar zxvf drupal-8.2.5.tar.gz
$ mv drupal-8.2.5/ drupal
  • ディレクトリ名はdrupalにしておく

ブラウザからインストールウィザードでインストール

  1. Cloud9のRun Projectボタンをクリック
  2. コマンドエリアに表示されたURLをOpen。Drupalディレクトリに移動。
  3. インストールを進める
    • インストールプロフィール:標準
    • データベースの設定:先ほど作成したDBの情報を入力。ユーザーはroot、パスワードは空欄でOK
    • サイトの環境設定:サイトの情報を入力したり、メンテナンス用のアカウントを作成する
  4. できたー!

次はコンテンツを作成してみます。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?