Jump to content

MySQL: Is there anything I can disable to save server resource?


Recommended Posts

MySQL: Is there anything I can disable to save server resource?
I only want to keep what's needed to run a forum using Sphinx search.

This is what I have loaded at the moment.

PDO, Reflection, SPL, SimpleXML, Zend Optimizer, apache2handler, bz2, calendar, ctype, curl, date, dbase, dom, exif, filter, ftp, gd, gettext, gmp, hash, iconv, ionCube Loader, json, libxml, mcrypt, mysql, mysqli, openssl, pcre, pdo_mysql, pdo_sqlite, session, shmop, sockets, standard, tokenizer, wddx, xml, xmlreader, xmlwriter, xsl, zip, zlib

Link to comment
Share on other sites

That looks like installed PHP modules to me. In which case you should compile PHP with ONLY the IPB required PHP modules and of course any other modules need to run other apps.

Something like mine...


./configure'

'--disable-all'

'--disable-ipv6'

'--enable-inline-optimization'

'--enable-fpm'

'--with-bz2'

'--with-curl'

'--with-gd'

'--with-mcrypt'

'--with-mhash'

'--with-mysql'

'--with-mysqli'

'--with-jpeg-dir'

'--with-png-dir'

'--with-zlib'

'--with-libxml-dir'

'--with-openssl'

'--with-iconv'

'--without-pear'

'--enable-dom'

'--enable-gd-native-ttf'

'--enable-json'

'--enable-mbstring'

'--enable-mysqlnd'

'--enable-session'

'--enable-libxml'

'--enable-zip'



Note the use of --disable-all

PM me if you need additional assistance.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...