Skip to content

TienLe.sol

  • Home
  • AI & Agents
  • GeneralExpand
    • Linux & Servers
  • About
  • PHP & Web Development
  • DatabasesExpand
  • NoSQL & Big Data
  • MySQL
  • Performance & Scaling
TienLe.sol
  • MySQL

    Install Nginx + PHP-FPM + MySQL on Low-end CentOS server

    ByConan August 15, 2013July 17, 2026

    There are many good low-end VPS provider over there with low cost, such as RamNode providing $2/month for their 128mb VPS, so the question is how can we do on a low-end CentOS server? Well, the answer is: you can run many websites on it with some tweak configurations. Let’s discover how to do this. On…

    Read More Install Nginx + PHP-FPM + MySQL on Low-end CentOS serverContinue

  • Linux & Servers

    Increase size of /tmp (/usr/tmpDSK) partition in Linux

    ByConan August 1, 2013July 17, 2026

    Sometimes the default mounted size in /tmp is too small and it might cause many unexpected crashes in Linux applications (such as mysql queries performing schema change, etc.) as well as your website application. In this case, although we can find and delete old files in /tmp directory, but it might also be full quickly…

    Read More Increase size of /tmp (/usr/tmpDSK) partition in LinuxContinue

  • MySQL

    Some notes on MySQL index query

    ByConan July 26, 2013July 17, 2026

    Some rules we should remember when doing MySQL index query: Index uses B-TREE, so be sure we understand how B-Tree works. Index is left-most, so if there is (c1, c2, c3) index, then query WHERE c1 = 1 AND c2 = 2 does use index, but not WHERE c2 = 2 When considering indexing, remember the following…

    Read More Some notes on MySQL index queryContinue

  • MySQL

    Upgrading from MySQL 5.1 to MySQL 5.5 / 5.6

    ByConan July 25, 2013July 17, 2026

    Upgrading from MySQL 5.1 to MySQL 5.5 / 5.6 when there is existing data is quite head-cache and scary story. Some notes might also help you when do upgrading: After upgrading, we need to run mysql_upgrade. In order to do that, we must have the mysql service running mysqld –skip-grant-tables –user=mysql mysql_upgrade -u root -p'PASSWORD' If…

    Read More Upgrading from MySQL 5.1 to MySQL 5.5 / 5.6Continue

  • MySQL

    MySQL Query Optimization using UNION

    ByConan July 25, 2013July 17, 2026

    Every developers might also understand how important index is when performing query but not of all do really care about how MySQL Query Optimization works. In the most cases, developers will think that index will work as it is and do not check in detail how index really work for a specific cases. The fact…

    Read More MySQL Query Optimization using UNIONContinue

  • Databases

    Install Percona in CentOS

    ByConan July 19, 2013July 17, 2026

    This tutorial helps you install percona server in CentOS as a replacement for MySQL server. According to Percona, Their “MySQL service clients and open source software users achieve breakthrough results with MySQL: cost savings, faster time to market, higher system up-time, and long-term scalability. MySQL performance is a focus for all that we do”. If…

    Read More Install Percona in CentOSContinue

  • MySQL

    Reset MySQL Root Password in CentOS

    ByConan July 19, 2013July 17, 2026

    In your development work, there are sometimes you forgot the mysql root password so you cannot make any system-level change to the mysql server. This quick tutorial tells you how to reset mysql root password in CentOS. First, need to stop MySQL: root# service mysqld stop Then, start MySQL in safe mode: root# mysqld_safe –skip-grant-tables…

    Read More Reset MySQL Root Password in CentOSContinue

  • PHP & Web Development

    PHP Tutorials :: Reflection in PHP

    ByConan July 16, 2013July 17, 2026

    Reflection is generally defined as a program’s ability to inspect itself and modify its logic at execution time. In less technical terms, reflection is asking an object to tell you about its properties and methods, and altering those members (even private ones). In this lesson, we’ll dig into how this is accomplished, and when it…

    Read More PHP Tutorials :: Reflection in PHPContinue

  • PHP & Web Development

    Laravel 4 – Beginner’s notes

    ByConan July 14, 2013July 17, 2026

    You might ask: What is Laravel (and Laravel 4)? In short, it is the PHP frameworks for web artisans. This contains notes for beginners. We can generate tables for application by utilizing the migration feature with artisan. For example, in order to setup a user table, we use parameters –table and –create: php artisan migrate:install php artisan…

    Read More Laravel 4 – Beginner’s notesContinue

  • Linux & Servers

    Perform Incremental Backups With Rsync

    ByConan July 12, 2013July 17, 2026

    Backing up your information is very important to you, or at least it should be. One of my college professors once told me, “It is not a question of if your hard drive will crash; it is when your hard drive will crash.” Rsync is a tool that allows you to keep two distinct directories in sync, either locally (two…

    Read More Perform Incremental Backups With RsyncContinue

Page navigation

Previous PagePrevious 1 … 10 11 12 13 14 … 18 Next PageNext

© 2026 TienLe.sol

  • Home
  • AI & Agents
  • General
    • Linux & Servers
  • About
  • PHP & Web Development
  • Databases
  • NoSQL & Big Data
  • MySQL
  • Performance & Scaling