{"id":6482,"date":"2020-06-08T11:01:47","date_gmt":"2020-06-08T02:01:47","guid":{"rendered":"https:\/\/auctionpro.co.kr\/?p=6482"},"modified":"2023-08-14T18:21:21","modified_gmt":"2023-08-14T09:21:21","slug":"ubuntu-18-04-mysql-%ec%84%a4%ec%b9%98","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=6482","title":{"rendered":"ubuntu 18.04  mysql 8.023 \uc124\uce58"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">sudo apt update<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">sudo apt install mysql-server<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">sudo mysql_secure_installation<\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update\nsudo apt install mysql-server\nsudo mysql_secure_installation<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">sudo mysql_secure_installation<\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">root@localhost:\/etc\/apache2# sudo mysql_secure_installation\n\nSecuring the MySQL server deployment.\n\nConnecting to MySQL using a blank password.\n\nVALIDATE PASSWORD PLUGIN can be used to test passwords\nand improve security. It checks the strength of password\nand allows the users to set only those passwords which are\nsecure enough. Would you like to setup VALIDATE PASSWORD plugin?\n\nPress y|Y for Yes, any other key for No: y\n\nThere are three levels of password validation policy:\n\nLOW    Length &gt;= 8\nMEDIUM Length &gt;= 8, numeric, mixed case, and special characters\nSTRONG Length &gt;= 8, numeric, mixed case, special characters and dictionary                  file\n\nPlease enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 0\nPlease set the password for root here.\n\nNew password:\n\nRe-enter new password:\n\nEstimated strength of the password: 50\nDo you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y\nBy default, a MySQL installation has an anonymous user,\nallowing anyone to log into MySQL without having to have\na user account created for them. This is intended only for\ntesting, and to make the installation go a bit smoother.\nYou should remove them before moving into a production\nenvironment.\n\nRemove anonymous users? (Press y|Y for Yes, any other key for No) : y\nSuccess.\n\n\nNormally, root should only be allowed to connect from\n'localhost'. This ensures that someone cannot guess at\nthe root password from the network.\n\nDisallow root login remotely? (Press y|Y for Yes, any other key for No) : n\n\n ... skipping.\nBy default, MySQL comes with a database named 'test' that\nanyone can access. This is also intended only for testing,\nand should be removed before moving into a production\nenvironment.\n\n\nRemove test database and access to it? (Press y|Y for Yes, any other key for No) : y\n - Dropping test database...\nSuccess.\n\n - Removing privileges on test database...\nSuccess.\n\nReloading the privilege tables will ensure that all changes\nmade so far will take effect immediately.\n\nReload privilege tables now? (Press y|Y for Yes, any other key for No) : n\n\n ... skipping.\nAll done!\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Check authentication method for MySQL users<\/h4>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \" title=\"sudo mysql -uroot -p\">root@localhost:\/etc\/apache2# sudo mysql -uroot -p\nEnter password:\nWelcome to the MySQL monitor.  Commands end with ; or \\g.\nYour MySQL connection id is 4\nServer version: 5.7.30-0ubuntu0.18.04.1 (Ubuntu)\n\nCopyright (c) 2000, 2020, Oracle and\/or its affiliates. All rights reserved.\n\nOracle is a registered trademark of Oracle Corporation and\/or its\naffiliates. Other names may be trademarks of their respective\nowners.\n\nType 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\n\nmysql&gt; use mysql\nReading table information for completion of table and column names\nYou can turn off this feature to get a quicker startup with -A\n\nDatabase changed\nmysql&gt; SELECT user,host,authentication_string,plugin,host FROM mysql.user;\n+------------------+-----------+-------------------------------------------+-----------------------+-----------+\n| user             | host      | authentication_string                     | plugin                | host      |\n+------------------+-----------+-------------------------------------------+-----------------------+-----------+\n| root             | localhost |                                           | auth_socket           | localhost |\n| mysql.session    | localhost | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE | mysql_native_password | localhost |\n| mysql.sys        | localhost | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE | mysql_native_password | localhost |\n| debian-sys-maint | localhost | *C93D3360F51BE0E6E42E58C4D7F4853973596949 | mysql_native_password | localhost |\n+------------------+-----------+-------------------------------------------+-----------------------+-----------+\n4 rows in set (0.00 sec)\n\nmysql&gt; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'StrongPassword';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql&gt; SELECT user,authentication_string,plugin,host FROM mysql.user;\n+------------------+-------------------------------------------+-----------------------+-----------+\n| user             | authentication_string                     | plugin                | host      |\n+------------------+-------------------------------------------+-----------------------+-----------+\n| root             | *E57EB53ADCB799E5C107333FBBF5429597A509AC | mysql_native_password | localhost |\n| mysql.session    | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE | mysql_native_password | localhost |\n| mysql.sys        | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE | mysql_native_password | localhost |\n| debian-sys-maint | *C93D3360F51BE0E6E42E58C4D7F4853973596949 | mysql_native_password | localhost |\n+------------------+-------------------------------------------+-----------------------+-----------+\n4 rows in set (0.00 sec)\n\nmysql&gt; FLUSH PRIVILEGES;\nQuery OK, 0 rows affected (0.00 sec)\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">host \uac00 % \uc77c\uacbd\uc6b0<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">:: host\uac00 % \uc77c \uacbd\uc6b0 \nmysql&gt; ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'StrongPassword';\nQuery OK, 0 rows affected (0.00 sec)\n<\/pre><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">#\uc8fc\uc11d\ucc98\ub9ac #bind-address=127.0.0.0<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">vi \/etc\/mysql\/mysql.conf.d\/mysqld.cnf<\/h4>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \" >bind-address = 0.0.0.0\nmysqlx-bind-address = 0.0.0.0<\/pre><\/div>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \" >sudo systemctl restart mysql<\/pre><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">ufw allow \uc5f0\uacb0 \uc124\uc815 Or IPtable Port open<\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">  ufw allow from myIP(111.222.333.222) to any port 3306\n<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">  iptables -A INPUT -p tcp -s myIP(111.222.333.222) --dport 3306 -j ACCEPT\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Mysql WorkBench<\/h4>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench.png\"><img loading=\"lazy\" decoding=\"async\" width=\"787\" height=\"495\" src=\"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench.png\" alt=\"\" class=\"wp-image-6488\" srcset=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench.png 787w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench-300x189.png 300w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench-768x483.png 768w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench-150x94.png 150w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench-400x252.png 400w\" sizes=\"auto, (max-width: 787px) 100vw, 787px\" \/><\/a><\/figure>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>sudo apt update sudo apt install mysql-server sudo mysql_secure_installation sudo apt update sudo apt install mysql-server sudo mysql_secure_installation sudo mysql_secure_installation root@localhost:\/etc\/apache2# sudo mysql_secure_installation Securing the <a class=\"mh-excerpt-more\" href=\"https:\/\/www.auctionpro.co.kr\/?p=6482\" title=\"ubuntu 18.04  mysql 8.023 \uc124\uce58\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[88,6],"tags":[],"class_list":["post-6482","post","type-post","status-publish","format-standard","hentry","category-mysql","category-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ubuntu 18.04 mysql 8.023 \uc124\uce58 - AuctionPro<\/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.auctionpro.co.kr\/?p=6482\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ubuntu 18.04 mysql 8.023 \uc124\uce58 - AuctionPro\" \/>\n<meta property=\"og:description\" content=\"sudo apt update sudo apt install mysql-server sudo mysql_secure_installation sudo apt update sudo apt install mysql-server sudo mysql_secure_installation sudo mysql_secure_installation root@localhost:\/etc\/apache2# sudo mysql_secure_installation Securing the [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auctionpro.co.kr\/?p=6482\" \/>\n<meta property=\"og:site_name\" content=\"AuctionPro\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-08T02:01:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-14T09:21:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench.png\" \/>\n\t<meta property=\"og:image:width\" content=\"787\" \/>\n\t<meta property=\"og:image:height\" content=\"495\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"golgol\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"golgol\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482\"},\"author\":{\"name\":\"golgol\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"headline\":\"ubuntu 18.04 mysql 8.023 \uc124\uce58\",\"datePublished\":\"2020-06-08T02:01:47+00:00\",\"dateModified\":\"2023-08-14T09:21:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482\"},\"wordCount\":41,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/mysql_Workbench.png\",\"articleSection\":[\"[DB]Mysql\",\"[OS]Ubuntu\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482\",\"name\":\"ubuntu 18.04 mysql 8.023 \uc124\uce58 - AuctionPro\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/mysql_Workbench.png\",\"datePublished\":\"2020-06-08T02:01:47+00:00\",\"dateModified\":\"2023-08-14T09:21:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482#primaryimage\",\"url\":\"https:\\\/\\\/auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/mysql_Workbench.png\",\"contentUrl\":\"https:\\\/\\\/auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/mysql_Workbench.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=6482#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ubuntu 18.04 mysql 8.023 \uc124\uce58\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\",\"name\":\"AuctionPro\",\"description\":\"\uc625\uc158\ud504\ub85c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\",\"name\":\"golgol\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?author=6\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ubuntu 18.04 mysql 8.023 \uc124\uce58 - AuctionPro","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.auctionpro.co.kr\/?p=6482","og_locale":"ko_KR","og_type":"article","og_title":"ubuntu 18.04 mysql 8.023 \uc124\uce58 - AuctionPro","og_description":"sudo apt update sudo apt install mysql-server sudo mysql_secure_installation sudo apt update sudo apt install mysql-server sudo mysql_secure_installation sudo mysql_secure_installation root@localhost:\/etc\/apache2# sudo mysql_secure_installation Securing the [...]","og_url":"https:\/\/www.auctionpro.co.kr\/?p=6482","og_site_name":"AuctionPro","article_published_time":"2020-06-08T02:01:47+00:00","article_modified_time":"2023-08-14T09:21:21+00:00","og_image":[{"width":787,"height":495,"url":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench.png","type":"image\/png"}],"author":"golgol","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"golgol","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auctionpro.co.kr\/?p=6482#article","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=6482"},"author":{"name":"golgol","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"headline":"ubuntu 18.04 mysql 8.023 \uc124\uce58","datePublished":"2020-06-08T02:01:47+00:00","dateModified":"2023-08-14T09:21:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=6482"},"wordCount":41,"commentCount":0,"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=6482#primaryimage"},"thumbnailUrl":"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench.png","articleSection":["[DB]Mysql","[OS]Ubuntu"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auctionpro.co.kr\/?p=6482#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auctionpro.co.kr\/?p=6482","url":"https:\/\/www.auctionpro.co.kr\/?p=6482","name":"ubuntu 18.04 mysql 8.023 \uc124\uce58 - AuctionPro","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=6482#primaryimage"},"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=6482#primaryimage"},"thumbnailUrl":"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench.png","datePublished":"2020-06-08T02:01:47+00:00","dateModified":"2023-08-14T09:21:21+00:00","author":{"@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"breadcrumb":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=6482#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auctionpro.co.kr\/?p=6482"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.auctionpro.co.kr\/?p=6482#primaryimage","url":"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench.png","contentUrl":"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2020\/06\/mysql_Workbench.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.auctionpro.co.kr\/?p=6482#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/www.auctionpro.co.kr\/"},{"@type":"ListItem","position":2,"name":"ubuntu 18.04 mysql 8.023 \uc124\uce58"}]},{"@type":"WebSite","@id":"https:\/\/www.auctionpro.co.kr\/#website","url":"https:\/\/www.auctionpro.co.kr\/","name":"AuctionPro","description":"\uc625\uc158\ud504\ub85c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.auctionpro.co.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2","name":"golgol","url":"https:\/\/www.auctionpro.co.kr\/?author=6"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/6482","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6482"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/6482\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6482"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6482"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6482"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}