{"id":13261,"date":"2023-07-22T05:53:43","date_gmt":"2023-07-22T09:53:43","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13261"},"modified":"2023-07-22T05:53:46","modified_gmt":"2023-07-22T09:53:46","slug":"how-to-start-stop-restart-and-check-mysql-server-status","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/","title":{"rendered":"How to Start, Stop, Restart, and Check MySQL Server Status"},"content":{"rendered":"\n

To manage a MySQL server, you can use the command-line client or a graphical user interface. Here, we’ll provide instructions for using the command-line client, which is commonly available on most systems as well as the graphical user interface on WIndows and macOS. Make sure you have the necessary permissions to perform these actions, as some commands may require root or administrator privileges such as sudo.<\/p>\n\n\n\n

Starting MySQL Server:<\/strong><\/h2>\n\n\n\n

To start the MySQL server, you need to execute the appropriate command based on your operating system.<\/p>\n\n\n\n

On Linux (Ubuntu\/Debian):<\/strong><\/p>\n\n\n\n

$sudo service mysql start\n# or\n$sudo systemctl start mysql<\/code><\/pre>\n\n\n\n

On Linux (CentOS\/RHEL):<\/strong><\/p>\n\n\n\n

$sudo systemctl start mysqld<\/code><\/pre>\n\n\n\n

On Windows:<\/strong><\/p>\n\n\n\n

Open a Command Prompt or PowerShell with administrator privileges, then execute:<\/p>\n\n\n\n

net start mysql<\/code><\/pre>\n\n\n\n

Alternatively open the Services App by typing “Services<\/strong>” on the Windows search bar. In the Services App, scroll down to the MySQL service on the list. Using your mouse, right-click on the item to access the context menu with the appropriate commands.<\/p>\n\n\n\n

On macOS:<\/strong><\/p>\n\n\n\n

Open macOS system preferences and select the MySQL preference panel, and then execute “Start MySQL Server<\/strong>” on the appropriate instance.<\/p>\n\n\n\n

Alternatively using the command-line interface:<\/p>\n\n\n\n

$sudo mysql.server start<\/code><\/pre>\n\n\n\n

Stopping MySQL Server:<\/strong><\/h2>\n\n\n\n

On Linux (Ubuntu\/Debian):<\/strong><\/p>\n\n\n\n

$sudo service mysql stop\n# or\n$sudo systemctl stop mysql<\/code><\/pre>\n\n\n\n

On Linux (CentOS\/RHEL):<\/strong><\/p>\n\n\n\n

$sudo systemctl start mysqld<\/code><\/pre>\n\n\n\n

On Windows:<\/strong><\/p>\n\n\n\n

Open a Command Prompt or PowerShell with administrator privileges, then execute:<\/p>\n\n\n\n

net start mysql<\/code><\/pre>\n\n\n\n

Alternatively open the Services App by typing “Services<\/strong>” on the Windows search bar. In the Services App, scroll down to the MySQL service on the list. Using your mouse, right-click on the item to access the context menu with the appropriate commands.<\/p>\n\n\n\n

On macOS:<\/strong><\/p>\n\n\n\n

Open macOS system preferences and select the MySQL preference panel, and then execute “Stop MySQL Server<\/strong>” on the appropriate instance.<\/p>\n\n\n\n

Alternatively using the command-line interface:<\/p>\n\n\n\n

$sudo mysql.server stop<\/code><\/pre>\n\n\n\n

Restarting MySQL Server:<\/strong><\/h2>\n\n\n\n

On Linux (Ubuntu\/Debian):<\/strong><\/p>\n\n\n\n

$sudo service mysql restart\n# or\n$sudo systemctl restart mysql<\/code><\/pre>\n\n\n\n

On Linux (CentOS\/RHEL):<\/strong><\/p>\n\n\n\n

$sudo systemctl restart mysqld<\/code><\/pre>\n\n\n\n

On Windows:<\/strong><\/p>\n\n\n\n

Open a Command Prompt or PowerShell with administrator privileges, then execute:<\/p>\n\n\n\n

net stop mysql\nnet start mysql<\/code><\/pre>\n\n\n\n

Alternatively open the Services App by typing “Services<\/strong>” on the Windows search bar. In the Services App, scroll down to the MySQL service on the list. Using your mouse, right-click on the item to access the context menu with the appropriate commands.<\/p>\n\n\n\n

On macOS:<\/strong><\/p>\n\n\n\n

Open macOS system preferences and select the MySQL preference panel, and then execute “Restart MySQL Server<\/strong>” on the appropriate instance.<\/p>\n\n\n\n

Alternatively using the command-line interface:<\/p>\n\n\n\n

$sudo mysql.server restart<\/code><\/pre>\n\n\n\n

Checking MySQL Server Status:<\/strong><\/h2>\n\n\n\n

On Linux (Ubuntu\/Debian):<\/strong><\/p>\n\n\n\n

$sudo service mysql status\n# or\n$sudo systemctl status mysql<\/code><\/pre>\n\n\n\n

On Linux (CentOS\/RHEL):<\/strong><\/p>\n\n\n\n

$sudo systemctl status mysqld<\/code><\/pre>\n\n\n\n

On Windows:<\/strong><\/p>\n\n\n\n

Open a Command Prompt or PowerShell with administrator privileges, then execute:<\/p>\n\n\n\n

sc query mysql<\/code><\/pre>\n\n\n\n

Alternatively open the Services App by typing “Services<\/strong>” on the Windows search bar. In the Services App, scroll down to the MySQL service on the list and visually check the status.<\/p>\n\n\n\n

On macOS:<\/strong><\/p>\n\n\n\n

Open macOS system preferences and select the MySQL preference panel, and then you can visually check the status of the appropriate instance.<\/p>\n\n\n\n

Alternatively using the command-line interface:<\/p>\n\n\n\n

$sudo mysql.server status<\/code><\/pre>\n\n\n\n

Alternatively for all systems you can use the MySQL command-line client to check the server status by opening a terminal or command prompt and running the the MySQL client:<\/p>\n\n\n\n

$mysql -u your_username -p<\/code><\/pre>\n\n\n\n

Replace your_username with your MySQL username. Enter your MySQL password when prompted. Once logged in, you can check the server status by typing the command below to display the server’s uptime in seconds:<\/p>\n\n\n\n

mysql> SHOW STATUS LIKE 'Uptime';<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"

To manage a MySQL server, you can use the command-line client or a graphical user interface. Here, we’ll provide instructions for using the command-line client, which is commonly available on…<\/p>\n","protected":false},"author":1,"featured_media":13262,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,16,18],"tags":[121,180,350,354,359,393,433,591,598,646],"yoast_head":"\nHow to Start, Stop, Restart, and Check MySQL Server Status<\/title>\n<meta name=\"description\" content=\"This is how to properly MySQL Server status, and also administer it by starting, stoppings, and restarting the service\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Start, Stop, Restart, and Check MySQL Server Status\" \/>\n<meta property=\"og:description\" content=\"This is how to properly MySQL Server status, and also administer it by starting, stoppings, and restarting the service\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T09:53:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-22T09:53:46+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Start, Stop, Restart, and Check MySQL Server Status\",\"datePublished\":\"2023-07-22T09:53:43+00:00\",\"dateModified\":\"2023-07-22T09:53:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/\"},\"wordCount\":522,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg\",\"keywords\":[\"CentOS\",\"Database\",\"Libraries\",\"Linux\",\"MacOS\",\"MySQL\",\"Optimization\",\"Tools\",\"Ubuntu\",\"Windows\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/\",\"name\":\"How to Start, Stop, Restart, and Check MySQL Server Status\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg\",\"datePublished\":\"2023-07-22T09:53:43+00:00\",\"dateModified\":\"2023-07-22T09:53:46+00:00\",\"description\":\"This is how to properly MySQL Server status, and also administer it by starting, stoppings, and restarting the service\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg\",\"width\":1280,\"height\":680,\"caption\":\"MySQL Server Management\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Start, Stop, Restart, and Check MySQL Server Status\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Start, Stop, Restart, and Check MySQL Server Status","description":"This is how to properly MySQL Server status, and also administer it by starting, stoppings, and restarting the service","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":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/","og_locale":"en_US","og_type":"article","og_title":"How to Start, Stop, Restart, and Check MySQL Server Status","og_description":"This is how to properly MySQL Server status, and also administer it by starting, stoppings, and restarting the service","og_url":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2023-07-22T09:53:43+00:00","article_modified_time":"2023-07-22T09:53:46+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Start, Stop, Restart, and Check MySQL Server Status","datePublished":"2023-07-22T09:53:43+00:00","dateModified":"2023-07-22T09:53:46+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/"},"wordCount":522,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg","keywords":["CentOS","Database","Libraries","Linux","MacOS","MySQL","Optimization","Tools","Ubuntu","Windows"],"articleSection":["Articles","Guides","How To","Technology","Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/","url":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/","name":"How to Start, Stop, Restart, and Check MySQL Server Status","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg","datePublished":"2023-07-22T09:53:43+00:00","dateModified":"2023-07-22T09:53:46+00:00","description":"This is how to properly MySQL Server status, and also administer it by starting, stoppings, and restarting the service","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/07\/mysql-server-management.jpg","width":1280,"height":680,"caption":"MySQL Server Management"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-start-stop-restart-and-check-mysql-server-status\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Start, Stop, Restart, and Check MySQL Server Status"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13261"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=13261"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13261\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13262"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13261"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13261"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13261"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}