All Projects → yvoronoy → m2install

yvoronoy / m2install

Licence: GPL-2.0 license
Magento 2 Bash Install/Restore Script

Programming Languages

shell
77523 projects
HCL
1544 projects

Projects that are alternatives of or similar to m2install

magento-ngrok
Magento 2 module for ngrok.io service support
Stars: ✭ 45 (-43.04%)
Mutual labels:  magento, magento2
magento2-sample-imageuploader
A Magento 2 sample module demonstrating how to upload an image file within a grid and form UI Component.
Stars: ✭ 27 (-65.82%)
Mutual labels:  magento, magento2
magento2-checkout-success-misc-script
Add Miscellaneous HTML and JavaScript codes to Magento2 checkout conformation page
Stars: ✭ 26 (-67.09%)
Mutual labels:  magento, magento2
Dev-Tools-Magento-2-Module
A collection of utilities meant to improve the experience of developing modules for Magento without breaking existing functionality.
Stars: ✭ 18 (-77.22%)
Mutual labels:  magento, magento2
module-lazyload
magefan.com/magento-2-image-lazy-load-extension
Stars: ✭ 47 (-40.51%)
Mutual labels:  magento, magento2
module-blog-comments-recaptcha
module-blog-comments-recaptcha
Stars: ✭ 17 (-78.48%)
Mutual labels:  magento, magento2
module-catalog
Fixes for some known Magento 2 issues in Catalog
Stars: ✭ 23 (-70.89%)
Mutual labels:  magento, magento2
taxjar-magento2-extension
Magento 2 Sales Tax Extension by TaxJar
Stars: ✭ 23 (-70.89%)
Mutual labels:  magento, magento2
mage2docker
A performant, replicable, and production-like alpine Magento 2 local development environment that leverages Docker.
Stars: ✭ 37 (-53.16%)
Mutual labels:  magento, magento2
magento2-pimcore-bridge
Magento 2 module for Pimcore integration.
Stars: ✭ 28 (-64.56%)
Mutual labels:  magento, magento2
hubble-frontend-pwa
E-Commerce PWA Frontend
Stars: ✭ 43 (-45.57%)
Mutual labels:  magento, magento2
magento-2-security
Magento 2 Security extension FREE. Security extension gives store owners the ability to detect the IP addresses that are intentionally attacking their store at any given time. Therefore, they have timely measures to prevent this issue such as blocking those IP addresses or sending warning emails to store owners.
Stars: ✭ 40 (-49.37%)
Mutual labels:  magento, magento2
bestsellers-sorting-m2
Bestsellers sorting of products in categories for Magento 2
Stars: ✭ 24 (-69.62%)
Mutual labels:  magento, magento2
module-translation
magefan.com/magento-2-translation-extension
Stars: ✭ 35 (-55.7%)
Mutual labels:  magento, magento2
DiscountCodeUrl
Magento 2 module that applies a discount code automatically via URL
Stars: ✭ 33 (-58.23%)
Mutual labels:  magento, magento2
customer-ajax-login
Free magento 2 extension for Popup and AJAX based Login and Sign Up | Manish Joy
Stars: ✭ 14 (-82.28%)
Mutual labels:  magento, magento2
module-wysiwyg-advanced
Extend TinyMCE 4 & 5 tools in Magento 2
Stars: ✭ 60 (-24.05%)
Mutual labels:  magento, magento2
magento
Free PWA & SPA for Magento
Stars: ✭ 34 (-56.96%)
Mutual labels:  magento, magento2
Magento2-Twig
Twig Template Engine for Magento2
Stars: ✭ 58 (-26.58%)
Mutual labels:  magento, magento2
module-geoip
Detect Country by IP in Magento 2
Stars: ✭ 51 (-35.44%)
Mutual labels:  magento, magento2

Magento 2 Bash Install/Restore Script

Docker Image CI GitHub closed pull requests GitHub closed issues

This script is designed to simplify the installation process of Magento 2 and rapid deployment of merchant code and DB dumps.

m2install can be a helpful tool for support teams and teams who often need to install or deploy merchant backups or dumps.

The main purpose of this script is run m2install, wait a bit and get a working magento instance. Don't waste time on routine operations.

If you have any issues please report them to https://github.com/yvoronoy/m2install/issues

What can m2install exactly do?

  • Can automatically restore backup files created by
  • php bin/magento setup:backup --code --db
  • Can automatically restore support dumps created by Enterpsie Support Tool
  • php bin/magento support:backup:code (db)
  • Script can automatically install vanilla magento

Installation

Download latest version by curl

curl -o m2install.sh https://raw.githubusercontent.com/yvoronoy/m2install/master/m2install.sh

You can install by composer

composer require yvoronoy/m2install

In case you are using bash completion you can download completion for this script.

#For Linux User
curl -o /etc/bash_completion.d/m2install-bash-completion https://raw.githubusercontent.com/yvoronoy/m2install/master/m2install-bash-completion

#For OSX User with brew
curl -o /usr/local/etc/bash_completion.d/m2install-bash-completion https://raw.githubusercontent.com/yvoronoy/m2install/master/m2install-bash-completion

Usage

$ m2install.sh --help
m2install.sh is designed to simplify the installation process of Magento 2
and deployment of client dumps created by Magento 2 Support Extension.

Usage: m2install.sh [options]
Options:
    -h, --help                           Get this help.
    -s, --source (git, composer)         Get source code.
    -f, --force                          Install/Restore without any confirmations.
    --sample-data (yes, no)              Install sample data.
    --ee                                 Install Enterprise Edition.
    --b2b                                Install B2B Extension.
    -v, --version                        Magento Version - it means: Composer version or GIT Branch
    --mode (dev, prod)                   Magento Mode. Dev mode does not generate static & di content.
    --quiet                              Quiet mode. Suppress output all commands
    --skip-post-deploy                   Skip the post deploy script if it is exist
    --step (restore_code,restore_db      Specify step through comma without spaces.
        configure_db,configure_files     - Example: m2install.sh --step restore_db,configure_db
        installB2B --b2b                 - Example: m2install.sh --step installB2B --b2b
        installLiveSearch)               - Example: m2install.sh --step installLiveSearch
    --restore-table                      Restore only the specific table from DB dumps
    --debug                              Enable debug mode
    --php                                Specify path to PHP CLI (php71 or /usr/bin/php71)
    --remote-db                          Remote database name
    --es-host, --elasticsearch-host      Set the Elasticsearch host
    --es-port, --elasticsearch-port      Set the Elasticsearch port
    --uninstall                          Delete database and application from the current folder
    _________________________________________________________________________________________________
    --ee-path (/path/to/ee)              (DEPRECATED use --ee flag) Path to Enterprise Edition.

How to deploy backup/support dumps

In order to deploy the customer dumps you need:

  • Put DB and code dumps to new directory
  • Go to directory and run m2install

How to install Magento 2 using GIT

To install Magento 2 from git repository run m2install with --source git param

  • m2install --source git or
  • m2install -s git

How to install Magento 2 using Composer

To install Magento 2 from composer run m2install with --source composer param

  • m2install --source composer or
  • m2install -s composer

How to Install Magento 2 with Sample Data

  • Run m2install
  • Use wizard to install the sample data.

How to Install Magento 2 with B2B extension

With wizard

  • Run m2install
  • Use wizard to install the B2B

With CLI flags

  • m2install --ee --b2b or
  • m2install --step installB2B --b2b if you already have Magento EE

Remember that you have to install Enterprise Edition to be able to install B2B extension

Wizard

m2install shows you wizard on first run and prompts to save entered values to config file.

$ m2install.sh 
Current Directory: /Users/yvoronoy/Sites/m2/ee202
Configuration loaded from:
Enter Server Name of Document Root (default: http://mage2.dev/): 
Enter Base Path (default: ee202): 
Enter DB Host (default: localhost): 
Enter DB User (default: root): 
Enter DB Password: 
Enter DB Name (default: root_ee202): 
Do you want to install Sample Data (y/N) n
Enter Path to EE or [nN] to skip EE installation: n
--------------------------------------------------
BASE URL: http://mage2.dev/ee202/
DB PARAM: root@localhost
DB NAME: root_ee202
Sample Data will NOT be installed.
Magento EE will NOT be installed.
In order to generate static/di content, add mode param: m2install.sh --mode prod
Are you sure? [y/N] 

How to use configuration files

The config file allows you to store params for DB and URL. Example of config file

HTTP_HOST=http://your-mage-host.com/
BASE_PATH=your/base/path/${CURRENT_DIR_NAME}
DB_HOST=localhost
DB_USER=root
DB_PASSWORD=dbpassword

When you first run m2install script, it shows wizard which prompts to save the config file to your home directory.

m2install uses fallback mechanism to find config files recursively from home directory to current directory. For example if you want to install magento to directory ~/www/m2/ga/magento2ee

you can override config file which is placed in your home directory.

~/.m2install.conf
~/www/.m2install.conf
~/www/m2/.m2install.conf
~/www/m2/ga/.m2install.conf
~/www/m2/ga/magento2ee/.m2install.conf

How to use ssh tunnels for remote DB connection

Make sure that you have correct parameters in .m2install.conf file Parameters example:

REMOTE_DB_HOST=mysql-host:3306
[email protected]
REMOTE_KEY=/Users/path/to/ssh_key
LOCAL_PORT=33060

As a result you will get:

ssh -i /Users/path/to/ssh_key -o StrictHostKeyChecking=no -4fN -L 33060:mysql-host:3306 [email protected] >> /dev/null

All created ssh tunnels pids located in file kill_tunnel.sh in Magento root folder (or pub)

To run you will need only code dump file (Example code.tar.gz).

m2install.sh --remote-db database_name

Make attention that in --remote-db database_name first part before "_" is database user name

Make attention that in bootstrap added SECURE and UNSECURE BASE_URL to prevent DB modification

$_ENV['CONFIG__DEFAULT__WEB__UNSECURE__BASE_URL'] = 'http://magento.local/';
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].