Install:Quick Install Magento
From OpenLiteSpeed Wiki
After downloading and installing OpenLiteSpeed, follow the instructions below to get your Magento site working. The installation process for Magento 1.x and Magento 2.0 are slightly different, so please ensure that you are following that steps for the the version you wish to install.
Contents
- 1 Install PHP Modules
- 2 Set Up Magento On A Vhost
- 3 Set up a MySQL database for Magento
- 4 Magento 1 Installation
- 5 Magento 2 Installation
- 5.1 Install Composer
- 5.2 Add The Correct PHP Path To The $Path Environment Variable
- 5.3 Choose An Installation Directory For Magento 2
- 5.4 Get The Magento Software
- 5.5 Change Ownership Of All Files In The Magento Directory
- 5.6 Add The Required Rewrite Rules To Your Virtual Host Settings
- 5.7 Perform A Graceful Restart
- 5.8 Run The Magento Setup Wizard
- 5.9 Fix css Loading Issue For Magento 2 Frontend/Backend
Install PHP Modules
The easiest way to install PHP for OpenLiteSpeed is through our CentOS repository. If the LiteSpeed Repository was not already installed and enabled during web server installation, follow this guide to do so.
Use the following command to install PHP with the required modules:
yum install lsphp56 lsphp56-common lsphp56-gd lsphp56-process lsphp56-mbstring lsphp56-mysql lsphp56-mcrypt lsphp56-pdo lsphp56-xml lsphp56-intl
- Note: There are different versions of LSPHP (lsphp53, lsphp54, lsphp55, lsphp56, lsphp70, lsphp71) available. Please check your Magento version for PHP requirements.
Direct LSWS to the location of the installed PHP binary. (In this example, PHP 5.6 is installed by default in /usr/local/lsws/lsphp56/bin/lsphp
. In the WebAdmin Console, change the value of the External App > your_external_application > Command setting to reflect the PHP version you are using.)
If you are not using RedHat or CentOS, or you prefer to build PHP manually, see our instructions on Building PHP for Magento.
Magento 2: You will need to set the value of "always_populate_raw_post_data" to -1 in the related php.ini file. In this example, this file would be /usr/local/lsws/lsphp56/etc/php.ini
. You should also make any memory configuration changes here if your version of Magento requires it.
For Example:
memory_limit = 768M max_execution_time = 18000 session.auto_start = 0
Set Up Magento On A Vhost
Here we will use the default virtual host "Example".
- In the WebAdmin Console, navigate to Configuration > Virtual Hosts > Example > General > Index Files.
- Add "index.php".
Set up a MySQL database for Magento
Start by installing MySQL:
yum install mysql mysql-server
Magento 2: You will need mysql 5.6 or later. More information on installing MySQL 5.6 from a repo
Next start MySQL, log into your MySQL server, and create a Magento database instance.
service mysql start mysql -u root -p
#Enter the following commands while logged in to MySQL. mysql>create database magento; mysql>GRANT ALL ON magento.* TO 'magento'@'localhost' IDENTIFIED BY 'magento'; mysql>flush privileges;
http://devdocs.magento.com/guides/m1x/install/installing_install.html#install-create-db
Magento 1 Installation
Download Magento 1
- Register or log in to Magento.com.
- Download Magento from their release archive.
- copy/ftp the downloaded files into your server's document root. Magento should be put in a subdirectory of the virtual host. For example,
/usr/local/lsws/Example/html/magento
. (This puts all the files in the right directory for running Magento on the virtual host "Example".) - Using Magento 1.9.3.1 as an example, uncompress the downloaded files with the following command:
tar -zxvf magento-1.9.3.1.tar.gz
Change Ownership Of All Files In The Magento Directory
In order for the web server to have write permissions during installation, ownership of the uncompressed Magento Files must be changed to the "nobody" user. Using the "Example" virtual host as an example, do so with the following command:
chown -R nobody /usr/local/lsws/DEFAULT/html/magento
Add The Required Rewrite Rules To Your Virtual Host Settings
- In the WebAdmin Console, navigate to Virtual Hosts > Example > Rewrite.
- Set Enable Rewrite to Yes.
- Add the following to the Rewrite Rules setting:
============>8============ RewriteBase /magento ############################################ ## Uncomment out the next line to enable light API calls processing # RewriteRule ^/api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L] ############################################ ## Rewrite API2 calls to api.php (by now it is REST only) RewriteRule ^/api/rest api.php?type=rest [QSA,L] ############################################ ## Workaround for HTTP authorization in the CGI environment RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] ############################################ ## TRACE and TRACK HTTP methods disabled to prevent XSS attacks RewriteCond %{REQUEST_METHOD} ^TRAC[EK] RewriteRule .* - [L,R=405] ############################################ ## Redirect for mobile user agents #RewriteCond %{REQUEST_URI} !^/mobiledirectoryhere/.*$ #RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC] #RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302] ############################################ ## Always send 404 for missing files in these folders RewriteCond %{REQUEST_URI} !^/magento/(media|skin|js)/ ############################################ ## Never rewrite for existing files, directories, and links RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l ############################################ ## Rewrite everything else to index.php RewriteRule .* /magento/index.php [L] ============>8============
IMPORTANT : These rules are written for installations located in subdirectory "magento". If your Magento installation is located in the server docroot instead of the suggested /magento
subdirectory, remove "magento" from the rewrite rules containing it. For example, RewriteBase /magento
would become RewriteBase /
, and RewriteRule .* /magento/index.php [L]
would become RewriteRule .* /index.php [L]
.
Note: These rewrite rules are taken directly from Magento's official site. Any questions regarding these rules would be best directed to the Official Magento Forums.
Perform A Graceful Restart
To make the previous server changes take affect, we must perform a graceful restart. In the WebAdmin Console, navigate to Actions > Graceful Restart.
Run The Magento Setup Wizard
In your browser, visit http://your_server_ip:8088/magento and follow the instructions.
Magento 2 Installation
The following instruction will walk you through installing a basic Magento 2 site on OpenLiteSpeed. If you would like more in depth information on installing and configuring Magento 2, please refer to the Official Magento 2 Installation Guide.
The following commands should be run as the root user.
Install Composer
Install composer with the following command:
yum install composer
Add The Correct PHP Path To The $Path Environment Variable
By default, Composer will check for PHP at system default location - usually /usr/bin/php
. This can sometimes cause Composer's version checking to fail. To avoid this, we will add our PHP installation directory the $PATH environment variable. Using LSPHP-56 as an example, run the following command:
export PATH="/usr/local/lsws/lsphp56/bin/:$PATH"
Choose An Installation Directory For Magento 2
Using the default "Example" virtual host, we create a directory for our Magento 2 installation and enter it.
cd /usr/local/lsws/Example/html mkdir magento2 cd magento2
Get The Magento Software
Using Composer, we will now get the most recent Magento 2 package.
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition .
You will then be prompted to enter your username and password for repo.magento.com.
Authentication required (repo.magento.com): Username: password:
If you have not done so already, Request One.
Change Ownership Of All Files In The Magento Directory
In order for the web server to have write permissions during installation, ownership of the uncompressed Magento Files must be changed to the "nobody" user. Using the "Example" virtual host as an example, do so with the following command:
chown -R nobody /usr/local/lsws/Example/html/magento2
Add The Required Rewrite Rules To Your Virtual Host Settings
- In the WebAdmin Console, navigate to Virtual Hosts > Example > Rewrite.
- Set Enable Rewrite to Yes.
- Add the following to the Rewrite Rules setting:
Options +FollowSymLinks RewriteEngine on RewriteBase /magento2/ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteCond %{REQUEST_METHOD} ^TRAC[EK] RewriteRule .* - [L,R=405] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule .* /magento2/index.php [L]
IMPORTANT : These rules are written for installations located in subdirectory "magento2". If your Magento installation is located in the server docroot instead of the suggested /magento2
subdirectory, remove "magento2" from the rewrite rules containing it. For example, RewriteBase /magento2/
would become RewriteBase /
, and RewriteRule .* /magento2/index.php [L]
would become RewriteRule .* /index.php [L]
.
Note: These rewrite rules are taken directly from Magento's official site. Any questions regarding these rules would be best directed to the Official Magento Forums.
Perform A Graceful Restart
To make the previous server changes take affect, we must perform a graceful restart. In the WebAdmin Console, navigate to Actions > Graceful Restart.
Run The Magento Setup Wizard
In your browser, visit http://your_server_ip:8088/magento and follow the instructions.
Fix css Loading Issue For Magento 2 Frontend/Backend
The last step is to fix a css loading issue present in new Magento 2 installations. Using the "Example" virtual host and assuming your Magento 2 installation is located under the /magento2
subdirectory, we can do this with the following set of commands:
cd /usr/local/lsws/Example/html/magento2/ php bin/magento setup:static-content:deploy php bin/magento indexer:reindex rm -rf var/cache/* chown -R nobody:nobody .