Collections:
What Is "mysqld" Command in MySQL
What Is "mysqld" in MySQL?
✍: FYIcenter.com
"mysqld" is MySQL server daemon program which runs quietly in background on your computer system. Invoking "mysqld" will start the MySQL server on your system. Terminating "mysqld" will shutdown the MySQL server. Here is a tutorial example of invoking "mysqld" with the "--console" option:
>cd \mysql\bin >mysqld --console ... 21:52:54 InnoDB: Started; log sequence number 0 43655 ... 21:52:54 [Note] mysqld: ready for connections. Version: '5.0.24-community' socket: '' port: 3306 MySQL Community Edition (GPL)
The returning message indicates that "mysqld" running now, and your MySQL server is ready to take client connections. To know about "mysqld", read other parts of this FAQ collection.
2018-06-01, 875👍, 0💬
Popular Posts:
How To Enter Unicode Character String Literals in SQL Server Transact-SQL? Unicode characters are mu...
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...
How To Select Some Specific Columns from a Table in a Query in SQL Server? If you want explicitly te...
How To Create a Table in a Specific Tablespace in Oracle? After you have created a new tablespace, y...
What are single-byte character string data types supported in SQL Server Transact-SQL? Single-byte c...