linode VPS安装Magento教程

Magento (麦进斗) 是一套专业开源的电子商务系统,貌似用的人很多,但我个人来说并不了解这个东西,毕竟我不是做网络购物的。不过我代购的Linode客户中,要求装这个东东的越来越多,以前只装过ECSHOP、SHOPEX,所以花了点时间,在备用的Linode上熟悉了下。

1.了解Magento的安装系统要求:

  • Supported Operating Systems:
    • Linux x86, x86-64
  • Supported Web Servers:
    • Apache 1.3.x
    • Apache 2.0.x
    • Apache 2.2.x
    • Nginx (starting from Magento 1.7 Community and 1.12 Enterprise versions)
  • Supported Browsers:
    • Microsoft Internet Explorer 7 and above
    • Mozilla Firefox 3.5 and above
    • Apple Safari 5 and above on Mac only
    • Google Chrome 7 and above
    • Adobe Flash browser plug-in should be installed
  • PHP Compatibility:
    • 5.2.13 – 5.3.15
    • Required extensions:
      • PDO_MySQL
      • simplexml
      • mcrypt
      • hash
      • GD
      • DOM
      • iconv
      • curl
      • SOAP (if Webservices API is to be used)
    • Safe_mode off
    • Memory_limit no less than 256Mb (preferably 512)
  • MySQL:
    • 4.1.20 or newer
    • InnoDB storage engine
  • SSL:
    • If HTTPS is used to work in the admin, SSL certificate should be valid. Self-signed SSL certificates are not supported
  • Server – hosting – setup:
    • Ability to run scheduled jobs (crontab) with PHP 5
    • Ability to override options in .htaccess files

安装完整下载版方式:

wget http://www.magentocommerce.com/downloads/assets/1.7.0.2/magento-1.7.0.2.tar.gz
tar -zxvf magento-1.7.0.2.tar.gz
mv magento/* magento/.htaccess .
chmod -R o+w media var
chmod o+w app/etc
建议删除源文件:rm -rf magento/ magento-1.7.0.2.tar.gz
接下来就可以通过网页,域名访问来安装magento了。

对于网络条件好的朋友,也可以通过网络一步一步安装:

wget http://www.magentocommerce.com/downloads/assets/1.7.0.0/magento-downloader-1.7.0.0.tar.gz
tar -zxvf magento-downloader-1.7.0.0.tar.gz
rm -rf magento-downloader-1.7.0.0.tar.gz
接下来就通过网络http://www.yourwebsite.com/downloader.php来搞定。

linode VPS安装Magento几点需要注意的地方:

一、不要是用5.3及其以上的PHP,因为在几次安装过程中,凡是涉及5.3及其以上版本的php时,安装都会出现诸如页面空白、长时间无反应等情况,最终结果就是安装失败,虽然可能数据库内容已经被建好。

二、对于Nginx,特别是LNMP一键包用户来说,找到对应的伪静态规则是当务之急,所以在我找到之后,不敢独享,需要的基友拿去!

文件名为:magento.conf(下载),将其放在 /usr/local/nginx/conf/ 文件夹下
然后在 /usr/local/nginx/conf/vhost/www.yourname.com.conf 中将include none.conf; 换成include magento.conf;即可。最后是重启nginx.

/etc/init.d/nginx restart

三、对于新手来说,不建议使用webmin/virtualmin环境,一来其默认的php是5.3.x,二来其默认的php缺少几个magento必需的函数功能,如果你不想自己编译php的话,推荐使用LNMP一键包。

四、不少环境配置完成之后,PHP的Memory_limit值都是128M,甚至更少,建议基友们将php.ini中的这个值改为256M,当然,前提是你的vps拥有512M内存甚至更多。

五、在magento的安装步骤到达最后一步时,页面下半部有一个“skip baseurl check”之类的复选框(记不太清了),默认没有选中,建议将其打勾,跳过检查,否则在漫长的等待之后或许就是安装失败。

就这么几点,不算技巧,更谈不上经验,给有同样安装需求的基友一点建议。