Magento

eCommerce Software for Online Growth

Installing Magento Via SSH

Last modified by eStrategyNet on Tue, January 26, 2010 10:59
Source|Old Revisions  |  Back To Group

This article will outline a couple different ways to install the latest version of Magento via shell, and will take advantage of the PEAR downloader so you can use Magento Connect to upgrade Magento or add extensions.

We will cover how to install Magento with and without sample data, and how to install Magento in a subdirectory or the web root directory.

The web root directory simply means what immediately comes up when you access your domain, compared to a sub-directory install, which is how Magento is setup by default.

Using SSH is the easiest and fastest way to install Magento, especially when you’re trying to setup a store with sample data. Normally, that requires you to download about 45 MB worth of data and then re-upload it to your website. With SSH, we can take advantage of the connection of the server to grab the necessary files.

Alpha Release

You can download and install the alpha release and use the instructions below by using the following file:

http://www.magentocommerce.com/downloads/assets/1.4.0.0/magento-1.4.0.0-alpha3.tar.gz

With Sample Data

This is typically how Magento is installed, especially if you want to familiarize yourself with Magento and see how they setup categories and products.

  1. mkdir magento
  2. cd magento
  3. wget http://www.magentocommerce.com/downloads/assets/1.3.2.4/magento-1.3.2.4.tar.gz
  4. wget http://www.magentocommerce.com/downloads/assets/1.2.0/magento-sample-data-1.2.0.tar.gz
  5. tar -zxvf magento-1.3.2.4.tar.gz
  6. tar -zxvf magento-sample-data-1.2.0.tar.gz
  7. mv magento-sample-data-1.2.0/media/* magento/media/
  8. mv magento-sample-data-1.2.0/magento_sample_data_for_1.2.0.sql magento/data.sql
  9. mv magento/* magento/.htaccess .
  10. chmod o+w var var/.htaccess app/etc
  11. chmod -R o+w media
  12. mysql -h localhost -u root -p1324 magento_db < data.sql
  13. ./pear mage-setup .
  14. ./pear install magento-core/Mage_All_Latest-stable
  15. rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
  16. rm -rf magento/ magento-sample-data-1.2.0/
  17. rm -rf magento-1.3.2.4.tar.gz magento-sample-data-1.2.0.tar.gz data.sql

Subdirectory

For this install, there are five things you will need to know before you copy and paste the SSH commands and run the install.

  1. Subdirectory name where Magento will be installed
  2. The database host name, localhost works for most
  3. The name of the database that Magento will use
  4. The username that has privileges to use the database
  5. The password for that user

Once you have that information, you’ll want to copy and paste the commands for the type of install you want and replace what’s there with the information from above. It’s best to copy this into notepad or something similar.

So that means you’ll be replacing the word SUBDIRECTORY below (two times) to the name of the subdirectory where you want Magento installed, and DBHOST, DBNAME, DBUSER, and DBPASS.

  1. mkdir SUBDIRECTORY
  2. cd SUBDIRECTORY
  3. wget http://www.magentocommerce.com/downloads/assets/1.3.2.4/magento-1.3.2.4.tar.gz
  4. wget http://www.magentocommerce.com/downloads/assets/1.2.0/magento-sample-data-1.2.0.tar.gz
  5. tar -zxvf magento-1.3.2.4.tar.gz
  6. tar -zxvf magento-sample-data-1.2.0.tar.gz
  7. mv magento-sample-data-1.2.0/media/* magento/media/
  8. mv magento-sample-data-1.2.0/magento_sample_data_for_1.2.0.sql magento/data.sql
  9. mv magento/* magento/.htaccess .
  10. chmod o+w var var/.htaccess app/etc
  11. chmod -R o+w media
  12. mysql -h DBHOST -u DBUSER -pDBPASS DBNAME < data.sql
  13. ./pear mage-setup .
  14. ./pear install magento-core/Mage_All_Latest-stable
  15. rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
  16. rm -rf magento/ magento-sample-data-1.2.0/
  17. rm -rf magento-1.3.2.4.tar.gz magento-sample-data-1.2.0.tar.gz data.sql

Root Web Directory

This is almost the same as above, except you don’t need to know the directory name. You will only have to replace DBHOST, DBNAME, DBUSER, and DBPASS.

  1. wget http://www.magentocommerce.com/downloads/assets/1.3.2.4/magento-1.3.2.4.tar.gz
  2. wget http://www.magentocommerce.com/downloads/assets/1.2.0/magento-sample-data-1.2.0.tar.gz
  3. tar -zxvf magento-1.3.2.4.tar.gz
  4. tar -zxvf magento-sample-data-1.2.0.tar.gz
  5. mv magento-sample-data-1.2.0/media/* magento/media/
  6. mv magento-sample-data-1.2.0/magento_sample_data_for_1.2.0.sql magento/data.sql
  7. mv magento/* magento/.htaccess .
  8. chmod o+w var var/.htaccess app/etc
  9. chmod -R o+w media
  10. mysql -h DBHOST -u DBUSER -pDBPASS DBNAME < data.sql
  11. ./pear mage-setup .
  12. ./pear install magento-core/Mage_All_Latest-stable
  13. rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
  14. rm -rf magento/ magento-sample-data-1.2.0/
  15. rm -rf magento-1.3.2.4.tar.gz magento-sample-data-1.2.0.tar.gz data.sql

==

Without Sample Data

You’ll choose this method to install Magento when you’re ready to start developing your store and adding your own products.

=

Subdirectory

For this install you only need to replace SUBDIRECTORY below (two times) with the name of the subdirectory that you want Magento installed in.

  1. mkdir SUBDIRECTORY
  2. cd SUBDIRECTORY
  3. wget http://www.magentocommerce.com/downloads/assets/1.3.2.4/magento-1.3.2.4.tar.gz
  4. tar -zxvf magento-1.3.2.4.tar.gz
  5. mv magento/* magento/.htaccess .
  6. chmod o+w var var/.htaccess app/etc
  7. chmod -R o+w media
  8. ./pear mage-setup .
  9. ./pear install magento-core/Mage_All_Latest-stable
  10. rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
  11. rm -rf magento/ magento-1.3.2.4.tar.gz

Root Web Directory

This is the easiest to install, because there’s nothing to change.

  1. wget http://www.magentocommerce.com/downloads/assets/1.3.2.4/magento-1.3.2.4.tar.gz
  2. tar -zxvf magento-1.3.2.4.tar.gz
  3. mv magento/* magento/.htaccess .
  4. chmod o+w var var/.htaccess app/etc
  5. chmod -R o+w media
  6. ./pear mage-setup .
  7. ./pear install magento-core/Mage_All_Latest-stable
  8. rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
  9. rm -rf magento/ magento-1.3.2.4.tar.gz

Web-Based Installer

After you have installed Magento via SSH, you can proceed through the web-based installer. You’ll use the same database details in that as well.

You can actually bypass the web-based installer and use the Command Line Interface (CLI) instead.

Alternatively, there’s an SSH script you can use that automates both the main steps of this article and the CLI installer.

Notes

URL Not Accessible

As mentioned in this thread, if you receive an error message that says URL not accessible, you’ll want to remove the following lines:

  1. ./pear mage-setup .
  2. ./pear install magento-core/Mage_All_Latest-stable

After you’ve gone through the web-based installer, then you can run those two commands to upgrade Magento to the lastest version, or use Magento Connect.

404 Error On Sample Products

If you get a 404 error when clicking on a product from the main page, you’ll need to login the backend of Magento and go to:

System -> Cache Management

In the Catalog section, click on the Refresh button for Catalog Rewrites.

This will also fix the URL structure for the categories and rest of the products.

Download An Archived Magento Connect Extension

If for some reason you need to download a Magento Connect extension archive from command line, use the following :

  1. wget http://connect.magentocommerce.com/community/get/EXTENSION_KEY-X.X.X.tgz

If the extension is from community channel and replacing EXTENSION_KEY with the real extension key and X.X.X with the real version number.




 

Magento User Guide

Magento Enterprise Available now

Professional Services from the Magento Team

Magento Job Board - Some sort of tag line goes here

Latest Posts| View all Jobs
© Copyright 2010 Varien. Magento, eCommerce software, is a trademark of Irubin Consulting Inc. DBA Varien
Privacy Policy|Terms of Service
Magento Community Count
177729 users|1077 users currently online|277194 forum posts