Server Startup programs in MySQL

Startup programs 


                           mysqld

                        mysqld_safe

                        mysql.server

                        mysqld_multi


mysqld :

                  mysqld is the server daemon.
                mysqld must be started and be running at all the times expect for maintenance.
                mysqld is a single multithreaded program 
                All data insert in to the database  using server program

mysqld_safe :

                  mysqld_safe is one of the server startup program script
                Many options are used for mysqld and mysqld_safe 

mysql.server :

                Another server startup program script, used for V-style run directories containing script
                It start system service at particular run level
                It can able to use on OS such as linux and solaris


mysql_mult         

                 This is a startup program script to start or stop multiple MySQL server 
                Processes that list to connections on different unix socket files and TCP/IP ports
                

Comments

Popular posts from this blog

Python if....elif....else statements

What is InnoDB - Why InnoDB use - ACID properties

Inheritance-Object Oriented Programming (OOPs) concept in python