Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the d mean in mysqld.exe

Tags:

mysql

server

What does the "d" mean in mysqld.exe? I think I have seen it in other software, too. httpd, for example. They also use %d.exe to start the server.

like image 272
fall Avatar asked Jul 28 '19 03:07

fall


1 Answers

The d is short for daemon. Basically a deamon is a background process (no UI) that responds to a request.

See https://searchmicroservices.techtarget.com/definition/daemon.

More info at https://english.stackexchange.com/questions/39266/what-is-the-difference-between-daemon-and-demon-in-a-religious-context

like image 58
Richard Schneider Avatar answered Nov 14 '22 21:11

Richard Schneider