LoginSignup
0
0

More than 5 years have passed since last update.

Magento2.1のマイナーアップデート手順(CLI)

Last updated at Posted at 2016-12-21

ComposrインストールでセットアップしたMagento2をCLIでマイナーアップデートした時の手順メモ。

基本公式Doc「Command-line upgrade」と同じ。

対象バージョン

Magento 2.1.2 => 2.1.3(Composerインストール)

サマリー

  • composerで新バージョンを指定してアップデート
  • Magento2のmoduleを再セットアップ
  • キャッシュ類をクリア

コマンド

magento/root/

# 公式ドキュメント表記の手順
composer require magento/product-community-edition 2.1.3 --no-update
composer update
magento setup:upgrade

# 以下はオマケと定型リフレッシュ

# bin/magentoのパーミッションが戻ってしまったので775に再設定
chmod 775 bin/magento

# モジュール再コンパイル
magento setup:di:compile

# インデックス・キャッシュ再生成
magento indexer:reindex
magento cache:flush

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