Skip to main content

MySQL Binary Installation On Linux Machine

#############################################################################################
mysql-5.5.25-linux2.6-i686.tar.gz generic binary installation on redhat
#############################################################################################
step 1) Downlaod the above package from http://dev.mysql.com/downloads/mysql/
step 2) # groupadd mysql
    # useradd -r -g mysql mysql
    # scp mysql-5.5.25-linux2.6-i686.tar.gz /usr/local
        # cd /usr/local
        # tar zxvf mysql-5.5.25-linux2.6-i686.tar.gz
    # ln -s mysql-5.5.25-linux2.6-i686 mysql
    # cd mysql
    # chown -R mysql .
    # chgrp -R mysql .
    #  ./scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data 
    # chown -R root .
    # chown -R mysql data
    
        Next command is optional
    # cp support-files/my-medium.cnf /etc/my.cnf
    # cp support-files/mysql.server /etc/init.d/mysql

    start the mysql server

    # bin/mysqld_safe --user=mysql &
        
          or    
    #/etc/init.d/mysql start
        
        or
    #support-files/mysql.server start
    #cd /usr/local/mysql/bin
    #mv * /usr/bin
    #cd ../
    #rm -fr /usr/local/mysql/bin
    #ln -s /usr/bin /usr/local/mysql/bin

############################################################################################

Comments

Popular posts from this blog

MySQL thread error code of 1032- Translate binlog completely to avoid error

Could not execute Update_rows event on table db.table; Can't find record in 'table', Error_code: 1032; handler error HA_ERR_KEY_NOT_FOUND; the event's   master log mysql-bin.262297, end_log_pos 1983208 As of my knowledge the causing stop of slave SQL thread error code of 1032, due to lack of sync between Master - Slave. In our case, slave got an Update event form master, but that particular record was not available in the slave. (Of course, that was deleted on Master n Slave separately) You would get this error only if the binlog_format is set to ROW_BASED or MIXED mode. So, now check that particular binlog at that position where replication stopped with this error. When you convert the binlog with mysqlbinlog command, you may see some junk characters   where you were expecting some DMLs which caused the error(In our case its an Update statement). So you can use below command to translate binlog completely: mysqlbinlog --base64-output=DECO...

Mongodb online Training course Agenda

  Goal:   In this module, you will get an understanding of NoSQL databases, design goals, requirement of NoSQL database/ MongoDB, MongoDB® architecture and introduction to JSON and BSON among others. This module will also cover the installation of MongoDB® and associated tools. Skills Understand NoSQL databases and  advantages Install MongoDB on Windows and Linux platform Security Enable and high availability Objectives After completing this module, you will  be able knowledge ed on SQL and noSQL Database usages and difference between these MongoDB design and architecture  MongoDB GUI tools Describe JSON and BSON Install MongoDB on Windows, Linux, MAC OS etc.  Setup MongoDB environment Topics • Understanding the basic concepts of a Database • Database categories: What is NoSQL? Why NoSQL? Benefit over RDBMS  • Types of NoSQL Database, and NoSQL vs. SQL Comparison, ACID & Base Property • CAP Theorem, implementing NoSQL and what is MongoDB?  • O...

Linux Commands With Examples for Database Admins

Frequently Used Linux Commands With Examples 1. tar command examples Create a new tar archive. $ tar cvf archive_name.tar dirname/ Extract from an existing tar archive. $ tar xvf archive_name.tar View an existing tar archive. $ tar tvf archive_name.tar More tar examples: The Ultimate Tar Command Tutorial with 10 Practical Examples 2. grep command examples Search for a given string in a file (case in-sensitive search).  $ grep -i "the" demo_file Print the matched line, along with the 3 lines after it. $ grep -A 3 -i "example" demo_text Search for a given string in all files recursively $ grep -r "ramesh" * More grep examples: Get a Grip on the Grep! – 15 Practical Grep Command Examples 3. find command examples Find files using file-name ( case in-sensitve find) # find -iname "MyCProgram.c" Execute commands on files found by the find command $ find -iname "MyCProgram.c" -exec md5sum {} \; Find all empty...