Howdy, Stranger!

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


Lighttpd + MariaDB + PHP-FPM on CentOS/Scientific Linux 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.

Lighttpd + MariaDB + PHP-FPM on CentOS/Scientific Linux 6

edited August 2014 in Tutorials

Nevermind.

Comments

  • Installer updated. The installer will now find out whether your OS is 32 Bit or 64 Bit and will install the right version of the MariaDB repo.

  • @OP ,

    It's worth noting that for CentOS 7 ; MariaDB and PHP-FPM (as well as lighttpd) are a very recent version in the base repository, and therefore the installation process on CentOS 7 is literally the following:

    yum erase httpd -y
    yum install php-fpm lighttpd lighttpd-fastcgi mariadb mariadb-server -y
    for f in lighttpd mariadb; do
      systemctl start $f.service
      systemctl enable $f.service
    done
    
    /usr/sbin/mysql_secure_installation
    
    Thanked by 1Blanoz
  • linuxthefishlinuxthefish Member
    edited August 2014

    Why don't you run fpm on unix socket? Way faster than TCP connection...

    Also i'm sure the following values are ignored when using ondemand pm

    pm.start_servers = 1
    pm.min_spare_servers = 1
    pm.max_spare_servers = 1

  • NekkiNekki Veteran

    Thread closed at OPs request.

This discussion has been closed.