Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,14 @@ [email protected]:~$ ls /data/web # See the magento2 directory and the co

## Install Magento 2 Using the Command Line

### Download and Unzip the Latest Release to /data/web/magento2
### Create project from a certain release to /data/web/magento2

```
mkdir ~/magento2
cd ~/magento2
wget -qO- https://magento.mirror.hypernode.com/releases/magento2-latest.tar.gz | tar xfz -
composer create-project --repository-url=https://mage-os.hypernode.com/mirror/ magento/project-community-edition:2.4.7-p2 /data/web/magento2
```

**Important!** Please replace `2.4.7-p2` with the latest Magento 2 version available.

### Create a Database (In This Example, We Named the Database ‘magento2’, but You Can Name It However You Like)

```
Expand All @@ -110,6 +110,7 @@ echo "create database magento2" | mysql
### Enable the Magento 2 Management Tool

```
cd ~/magento2
chmod 755 bin/magento
```

Expand Down
Loading