cancel
Showing results for 
Search instead for 
Did you mean: 

install magento 2.4.4

install magento 2.4.4

Hello,

can you please any one can give install documentation

i've bought hosting with ssh access to ready to install the magento ecommerce on my site

please

6 REPLIES 6

Re: install magento 2.4.4

Hi @loveislol9122b ,

 

Please check https://experienceleague.adobe.com/docs/commerce-operations/installation-guide/system-requirements.h...

 

You can find all information from above link.

 

Problem Solved? Accept as Solution!

 

Hope it helps!

Thanks

Ankit Jasani

Re: install magento 2.4.4

Hello @loveislol9122b 

 

Try below command:

$ composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition=2.4.4 /opt/magento2

Enter the username and password, the keys are shown below.

Username: Public Key

Password: Private Key

 

You will not see the password string. Simply paste it and composer will start downloading Magento 2.

Magento files are downloaded to directory /opt/magento2. To use another path, you can edit the command above for another location.

After the download is complete, you can start the installation with the command below-

cd /opt/magento2

 

You can edit the domain name, email address, and admin password. Use the following command -

bin/magento setup:install \
--base-url=http://yourdomain.com \
--db-host=localhost \
--db-name=magentodb \
--db-user=magento \
--db-password=magento \
--admin-firstname=admin \
--admin-lastname=admin \
--admin-email=admin@admin.com \
--admin-user=admin \
--admin-password=admin123 \
--language=en_US \
--currency=USD \
--timezone=America/Chicago \
--use-rewrites=1

 

 

Problem solved? Click Accept as Solution!

Re: install magento 2.4.4

is this latest version for it ..

please let me know is requre a premission 777 ?

on the public html ..

not a sub folder

Re: install magento 2.4.4

i want to install enterprise if that's possible is there a fee..

i edit the code and use the command but

project-community-edition

there's a folder inside folder the folder are empty but the folder " project-community-edition " has files i move them or edit name or do something before use the command

Re: install magento 2.4.4


Hi, I was wondering if it was feasible to install Enterprise and if so, if there was a cost involved.

I make changes to the code and run the command, but

project-community-edition

The folders themselves are empty, but the one labelled "project-community-edition" has files, which I must either relocate or rename before using the command.

 

marykayintouch login

Re: install magento 2.4.4

Hello

 

Please make sure to backup, if it's already application in an existing folder e.g. var/www/html/magento2.4

 

Run below command:

composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition=2.4.4 /opt/magento2

Enter the credentials If ask for credentials:

 

Enter the username and password, and the keys are shown below.

Username: Public Key

Password: Private Key

 

Run the below command after installation:

bin/magento setup:install \
--base-url=http://yourdomain.com \
--db-host=localhost \
--db-name=magentodb \
--db-user=magento \
--db-password=magento \
--admin-firstname=admin \
--admin-lastname=admin \
--admin-email=admin@admin.com \
--admin-user=admin \
--admin-password=admin123 \
--language=en_US \
--currency=USD \
--timezone=America/Chicago \
--use-rewrites=1