<<Back to MySQL & MariaDB Main Page
Getting Started With MySQL & MariaDB Database
MySQL as well as MariaDB are a relational database management system (RDBMS). It is one of the most widely used open-source database systems.The process that runs MySQL or MariaDB Database Server is called mysqld. It has the same name in both MySQL and MariaDB. The mysqld daemon listens on port 3306 by default.
Client program is called simply mysql through which you can interact with mysql server and execute SQL queries. mysql client is also capable to execute the queries from text files.
Few additional wrapper scripts are installed with mysqld server installation. Here are some important and most frequest used one.
mysqld_safe=> Used to start mysqld. It has also capability to restart the mysqld daemon if it crashes.
mysqlaccess=> Creates user accounts and sets their privileges
mysqladmin=> Used to manage the database server
mysqlshow=> Used to examine a server’s status
mysqldump=> Used for exporting data and table structures to a plain-text file. This can be used for backing up data or for copying databases between servers.The mysql client can be used to import the data back to MySQL from a dump file.
Comments
Post a Comment