Tutorials

:: MySQL : enable InnoDB from source

:: How to enable InnoDB on MySQL from source cd mysql ./configure --prefix=/usr/local/mysql --with-plugins=innobase,innodb_plugin make && make install   :: Configure...
SysadminID
36 sec read

:: PHP : Installing APC from source

:: How to install APC from source wget //pecl.php.net/get/APC tar xzf APC cd APC phpize ./configure --enable-apc --enable-apc-mmap make && make...
SysadminID
20 sec read

:: Linux : socks proxy via ssh

:: How to connection socks proxy via ssh + setup proxy connection ssh -D 8080 [email protected] 8080 = local proxy port...
SysadminID
16 sec read

:: CentOS: Apache2 worker MPM, FCGI, APC

:: Installing Apache2, FCGI, APC yum install httpd php-cgi mod_fcgid php-pecl-apc   :: Enable worker MPM on Apache2 vi /etc/sysconfig/httpd #...
SysadminID
45 sec read

:: Apache: Change Prefork MPM to Worker MPM

:: Determine which MPM running in apache apachectl -l if you see worker.c, your apache running worker mpm, if you see...
SysadminID
18 sec read

:: Sudo without password

:: How to setup sudo without password prompt visudo add this line for setup sudoer without password your_username ALL=(ALL) NOPASSWD: ALL...
SysadminID
5 sec read

:: phpMyAdmin : Enabe / Disable Root Login

:: How to enable root login in phpMyAdmin vi config.inc.php on /* Authentication type */ add this line: $cfg = TRUE;...
SysadminID
10 sec read