Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


best script for 128Mb LEB on debian 6
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

best script for 128Mb LEB on debian 6

sandozsandoz Veteran
edited August 2014 in Tutorials

Whats the best script to use for a debian 7 box with only 128Mb thats running wordpress?
I used to install with tuxlite, but that hasn't updated since a year, and i get more and more small errors on my other boxes that i have to fix

other scripts seem also not being maintained anymore

Comments

  • MunMun Member
    1. Install dotdeb repo! https://www.qwdsa.com/converse/threads/dotdeb-install-script.7/
    2. apt-get purge apache2* bind9*
    3. apt-get update
    4. apt-get install nginx php5-fpm php5-common php5 php5-gd php5-xcache nano mysql-server -y
    5. apt-get upgrade -y
    6. nano /etc/php/fpm/pool.d/www.conf and check the what the listen port is.
    7. nano /etc/nginx/sites-available/mysite.com and fill out the default nginx config http://wiki.nginx.org/ServerBlockExample
    8. ln -s /etc/nginx/sites-available/mysite.com /etc/nginx/sites-enabled/mysites.com
    9. service nginx restart
    10. install wordpress where ever you setup the folder structure
    11. Profit?
    Thanked by 3obakfahad ehab MikePT
  • You may want to replace mysql with MariaDB.

  • You may want to create a sudo account and disable root login.

  • Like this it will swap a lot i think?

  • If it's just for one WP site then I'd do it from the CL. For a script have a look at EasyEngine seems to be one of the few still updated.

  • Just remembered another one - Hiawatha

  • Latest minstall is a bit long to configure.

    If we can download the Minstall 2.5.7, we can use it to minimize the system and make a webserver.

    Due to the latest version of Nginx and Php-Fpm, we need to make some tweak, or the webserver will show 502 bad gateway due to Php-fpm not communicating with Nginx

  • @Mun said:
    1. Install dotdeb repo! https://www.qwdsa.com/converse/threads/dotdeb-install-script.7/
    2. apt-get purge apache2* bind9*
    3. apt-get update
    4. apt-get install nginx php5-fpm php5-common php5 php5-gd php5-xcache nano mysql-server -y
    5. apt-get upgrade -y
    6. nano /etc/php/fpm/pool.d/www.conf and check the what the listen port is.
    7. nano /etc/nginx/sites-available/mysite.com and fill out the default nginx config http://wiki.nginx.org/ServerBlockExample
    8. ln -s /etc/nginx/sites-available/mysite.com /etc/nginx/sites-enabled/mysites.com
    9. service nginx restart
    10. install wordpress where ever you setup the folder structure
    11. Profit?

    Are you missing php5-mysql or do you not need that with nginx?

  • I tried minstall. Not easy, thats why i love tuxlite. But it takes top much memory

  • anymore recent scripts? the hiawatha script looks nice, but i want to use nginx

  • MunMun Member

    @hostnoob said:
    Are you missing php5-mysql or do you not need that with nginx?

    ehh forgot.

  • I'm partial to https://github.com/Xeoncross/lowendscript

    It hasn't been updated for a while but with the magic of open source... you can update it yourself! Check out the numerous forks on github to see what others have done with it.

  • Been using https://github.com/lj2007331/lnmp

    Their installer will compile all the programs and they have a updater for them also. Good thing is that they will help you install many of the cache addons automatically like pagespeed for nginx, memcache, opcache, etc. Bad thing is that it might use more than 128mb ram if you install all those extras.

Sign In or Register to comment.