{"id":3303,"date":"2021-03-10T06:51:56","date_gmt":"2021-03-10T01:21:56","guid":{"rendered":"https:\/\/www.24x7serversupport.com\/blog\/?p=3303"},"modified":"2021-03-10T06:52:20","modified_gmt":"2021-03-10T01:22:20","slug":"error-the-server-quit-without-updating-pid-file","status":"publish","type":"post","link":"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/","title":{"rendered":"Error The Server Quit Without Updating Pid File"},"content":{"rendered":"\n<p>This detailed guide is mainly for FreeBSD, however the idea coincides for Linux. Every once a while, when I upgrade my FreeBSD box, the system prefers to shutdown my MySQL web server. Therefore, I need to begin it again after the upgrade is done. Sadly, the update process isn&#8217;t smooth every time. Sometimes it will toss me some mistake..<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/usr\/local\/etc\/rc.d\/mysql.server start<\/pre>\n\n\n\n<p>Oh well, I got the following error messages:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Starting MySQL..... ERROR! The server quit without updating PID file.<\/pre>\n\n\n\n<p>Sometimes, the message will tell you the exact location of which PID file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Starting MySQL..... ERROR! The server quit without updating PID file (\/var\/db\/mysql\/www.icesquare.com.pid).<\/pre>\n\n\n\n<p>There are several solutions to troubleshoot these problems. I will go over each one by one.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Solution 1: Reboot The Computer<\/h2>\n\n\n\n<p>Although it sounds simple, but it truly works. Throughout the system update, the OS may disable some of your daemons. Rather than fixing each one at a time, the easiest way is to begin everything over. For example, I skilled this problem today after updating the <strong>Apache and Ruby<\/strong> (Yes, MySQL isn&#8217;t component of the update), and I obtained this mistake message later. After rebooting the computer system, the mistake message is gone.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Solution 2: Remove Your MySQL Config File<\/h2>\n\n\n\n<p>If you have actually customized your MySQL setup submit, MySQL might not like it couple of variations after (MySQL isn&#8217;t backward compatibility pleasant). It could be the issue of utilizing an unsupported variable, or something comparable. The simplest method is to eliminate your setup submit, and attempt to begin the MySQL web server once more:<\/p>\n\n\n\n<p>Backup your MySQL configuration first.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mv \/etc\/my.cnf \/etc\/my.cnf.backup<\/pre>\n\n\n\n<p>And restart the MySQL server again:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/usr\/local\/share\/mysql\/mysql.server start<\/pre>\n\n\n\n<p>Hopefully you will see the following message:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Starting MySQL. SUCCESS!<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Solution 3: Upgrade Your Database File<\/h2>\n\n\n\n<p>Sometimes, the newer MySQL doesn\u2019t like the database created in earlier version. I discovered this when I upgrade to MySQL 5.5.7:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Starting MySQL..... ERROR! The server quit without updating PID file (\/var\/db\/mysql\/www.icesquare.com.pid).<\/pre>\n\n\n\n<p>Since MySQL tells me which PID file causes the problem, I open the file and take a look what\u2019s going on:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo tail \/var\/db\/mysql\/www.icesquare.com.err<\/pre>\n\n\n\n<p>And I saw something interesting: <strong>tables: Table \u2018mysql.proxies_priv\u2019 doesn\u2019t exist<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">101112 10:49:16&nbsp; InnoDB: Initializing buffer pool, size = 128.0M<br>101112 10:49:16&nbsp; InnoDB: Completed initialization of buffer pool<br>101112 10:49:16&nbsp; InnoDB: highest supported file format is Barracuda.<br>101112 10:49:17&nbsp; InnoDB: 1.1.3 started; log sequence number 1589404<br>101112 10:49:17 [ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.proxies_priv' doesn't exist<br>101112 10:49:17 mysqld_safe mysqld from pid file \/var\/db\/mysql\/www.icesquare.com.pid ended<\/pre>\n\n\n\n<p>The reason is very simple. MySQL could not open a table created in the earlier version (&lt; 5.7.7) because it is not compatible with the current version. So, we can try to start the MySQL in safe mode through rc.d. First, you can edit the <strong>\/etc\/rc.conf<\/strong> and put the following into the file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql_enable=\"YES\"<br>mysql_args=\"--skip-grant-tables --skip-networking\"<\/pre>\n\n\n\n<p>Restart MySQL through rc.d:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/usr\/local\/etc\/rc.d\/mysql-server start<\/pre>\n\n\n\n<p>If you did it right, you should see something like the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Starting MySQL.. SUCCESS!<\/pre>\n\n\n\n<p>Now, MySQL is already running the safe-mode. We want to perform a MySQL upgrade on all tables:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo mysql_upgrade<\/pre>\n\n\n\n<p>You should see something like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Looking for 'mysql' as: mysql<br>Looking for 'mysqlcheck' as: mysqlcheck<br>Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=\/tmp\/mysql.sock'<br>Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=\/tmp\/mysql.sock'<br>mysql.columns_priv&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;OK<br>mysql.db&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.event&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.func&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.general_log&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.help_category&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OK<br>mysql.help_keyword&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.help_relation&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.help_topic&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.host&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.ndb_binlog_index&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.plugin&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.proc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.procs_priv&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.servers&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.slow_log&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.tables_priv&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.time_zone&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.time_zone_leap_second&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.time_zone_name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OK<br>mysql.time_zone_transition&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.time_zone_transition_type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>mysql.user&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OK<br>Running 'mysql_fix_privilege_tables'...<br>OK<\/pre>\n\n\n\n<p>Now, we want to switch the MySQL back to normal mode by commenting the extra options in \/etc\/rc.conf:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql_enable=\"YES\"<br>#mysql_args=\"--skip-grant-tables --skip-networking\"<\/pre>\n\n\n\n<p>And restart MySQL through \/etc\/rc.d:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/usr\/local\/etc\/rc.d\/mysql-server restart<\/pre>\n\n\n\n<p>Now the MySQL is up and running again!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This detailed guide is mainly for FreeBSD, however the idea coincides for Linux. Every once a while, when I upgrade my FreeBSD box, the system prefers to shutdown my MySQL web server. Therefore, I need to begin it again after the upgrade is done. Sadly, the update process isn&#8217;t smooth every time. Sometimes it will [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[321,174],"tags":[],"class_list":["post-3303","post","type-post","status-publish","format-standard","hentry","category-freebsd","category-mysql"],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Error The Server Quit Without Updating Pid File | 24x7serversupport Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Error The Server Quit Without Updating Pid File | 24x7serversupport Blog\" \/>\n<meta property=\"og:description\" content=\"This detailed guide is mainly for FreeBSD, however the idea coincides for Linux. Every once a while, when I upgrade my FreeBSD box, the system prefers to shutdown my MySQL web server. Therefore, I need to begin it again after the upgrade is done. Sadly, the update process isn&#8217;t smooth every time. Sometimes it will [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/\" \/>\n<meta property=\"og:site_name\" content=\"24x7serversupport Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-10T01:21:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-10T01:22:20+00:00\" \/>\n<meta name=\"author\" content=\"24x7support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:site\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"24x7support\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/\",\"name\":\"Error The Server Quit Without Updating Pid File | 24x7serversupport Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\"},\"datePublished\":\"2021-03-10T01:21:56+00:00\",\"dateModified\":\"2021-03-10T01:22:20+00:00\",\"author\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.24x7serversupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Error The Server Quit Without Updating Pid File\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/\",\"name\":\"24x7serversupport Blog\",\"description\":\"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\",\"name\":\"24x7support\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Error The Server Quit Without Updating Pid File | 24x7serversupport Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/","og_locale":"en_US","og_type":"article","og_title":"Error The Server Quit Without Updating Pid File | 24x7serversupport Blog","og_description":"This detailed guide is mainly for FreeBSD, however the idea coincides for Linux. Every once a while, when I upgrade my FreeBSD box, the system prefers to shutdown my MySQL web server. Therefore, I need to begin it again after the upgrade is done. Sadly, the update process isn&#8217;t smooth every time. Sometimes it will [&hellip;]","og_url":"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/","og_site_name":"24x7serversupport Blog","article_published_time":"2021-03-10T01:21:56+00:00","article_modified_time":"2021-03-10T01:22:20+00:00","author":"24x7support","twitter_card":"summary_large_image","twitter_creator":"@24x7serversuppo","twitter_site":"@24x7serversuppo","twitter_misc":{"Written by":"24x7support","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/","url":"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/","name":"Error The Server Quit Without Updating Pid File | 24x7serversupport Blog","isPartOf":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#website"},"datePublished":"2021-03-10T01:21:56+00:00","dateModified":"2021-03-10T01:22:20+00:00","author":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401"},"breadcrumb":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.24x7serversupport.com\/blog\/error-the-server-quit-without-updating-pid-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.24x7serversupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Error The Server Quit Without Updating Pid File"}]},{"@type":"WebSite","@id":"https:\/\/www.24x7serversupport.com\/blog\/#website","url":"https:\/\/www.24x7serversupport.com\/blog\/","name":"24x7serversupport Blog","description":"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401","name":"24x7support","url":"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3303","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/comments?post=3303"}],"version-history":[{"count":1,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3303\/revisions"}],"predecessor-version":[{"id":3304,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3303\/revisions\/3304"}],"wp:attachment":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/media?parent=3303"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/categories?post=3303"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/tags?post=3303"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}