{"id":290,"date":"2012-08-17T11:38:46","date_gmt":"2012-08-17T02:38:46","guid":{"rendered":"http:\/\/auctionpro.co.kr\/WPress\/?p=290"},"modified":"2012-08-28T23:59:31","modified_gmt":"2012-08-28T14:59:31","slug":"installing-tomcat-7-on-centos-6","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=290","title":{"rendered":"Installing Tomcat 7 on CentOS 6"},"content":{"rendered":"<h1>Installing Tomcat 7 on CentOS 6<\/h1>\n<p>\ucc38\uc870 : http:\/\/blog.naver.com\/PostView.nhn?blogId=cjw8349&amp;logNo=20160687770<\/p>\n<p>\ucc38\uc870 :\u00a0http:\/\/www.server-world.info\/en\/note?os=CentOS_6&amp;p=tomcat7<br \/>\nCentOS is a stable Linux distribution suited for running web application servers such as Tomcat. CentOS shares the same code base as the commercial enterprise Linux from Red Hat (RHEL) and is widely used as a server Linux distribution. In this article, I will show you how easy it is to setup a Tomcat 7 web application server on a minimal CentOS 6 installation. Please note that I use 64-bit versions for the example here.<\/p>\n<p>Getting Tomcat 7 up and running on CentOS 6 involves the following steps,<\/p>\n<ul>\n<li>Install CentOS 6<\/li>\n<li>Install Oracle Java Development Kit (JDK 1.6)<\/li>\n<li>Install Tomcat 7<\/li>\n<li>Configure CentOS 6 firewall for opening up Tomcat port<\/li>\n<\/ul>\n<h2>Install CentOS 6<\/h2>\n<p>I recommend installing the\u00a0<a href=\"http:\/\/wiki.centos.org\/Download\" target=\"_blank\">minimal ISO from the official repository<\/a>. The minimal ISO (<strong>CentOS-6.0-x86_64-minimal.iso \u2013 290MB<\/strong>) contains the bare minimum set of packages required for a CentOS system to get up and running. It also contains packages such as yum using which you can later add additional packages. Installing minimal ISO keeps the number of installed packages to a minimum there by increasing the overall security of the CentOS installation.<\/p>\n<p>Download the ISO file, burn it to a CD and install it on your server machine.<\/p>\n<h2>Install Oracle Java Development Kit (JDK 1.6)<\/h2>\n<p>In order to install JDK, you either need an active internet connection from CentOS installation or you need to be able copy the JDK binary to the CentOS installation. Assuming you have Ethernet connection to your server, run the following command to get an IP address from DHCP server,<\/p>\n<div>\n<p>dhclient eth0<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>Run the\u00a0<strong>ifconfig<\/strong>\u00a0command to verify that you have an active Ethernet connection and an IP address allocated from the local LAN.<\/p>\n<p>Now we need to install the\u00a0<strong>wget<\/strong>\u00a0package in CentOS which lets us download files from the command line. We will later use this command to download JDK and Tomcat binaries. Use the<strong>yum<\/strong>\u00a0tool to download and install wget utility. Yum is part of the minimal CentOS install.<\/p>\n<div>\n<p>yum install wget<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>Now use the\u00a0<strong>wget<\/strong>\u00a0tool to download 64 bit RPM binaries for Oracle JDK 6.<\/p>\n<div>\n<p>wget http:\/\/download.oracle.com\/otn-pub\/java\/jdk\/6u29-b11\/jdk-6u29-linux-x64-rpm.bin<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>Now you may be wondering how I got the URL for the RPM. Visit\u00a0<a href=\"http:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/index.html\" target=\"_blank\">Oracle JDK download site<\/a>\u00a0and then click on download link for JDK 6. Accept the license agreement on the next page and then right click and copy the URL for the Linux x64 RPM. Obviously you need to get the URL from a different machine.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" title=\"Getting the download link for Oracle JDK\" src=\"http:\/\/www.distrotips.com\/wp-content\/uploads\/2011\/11\/image.png\" alt=\"Getting the download link for Oracle JDK\" width=\"498\" height=\"261\" border=\"0\" \/><\/p>\n<p>Now using the\u00a0<strong>chmod<\/strong>\u00a0command, change the downloaded file to an executable file,<\/p>\n<div>\n<p>chmod +x jdk-6u29-linux-x64-rpm.bin<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>Run the downloaded file to install Oracle JDK 6 on CentOS.<\/p>\n<div>\n<p>.\/jdk-6u29-linux-x64-rpm.bin<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>By default Java binaries are installed in\u00a0<strong>\/usr\/java<\/strong>\u00a0folder. Verify the Java installation by running the following command,<\/p>\n<div>\n<p>java -version<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<h2><\/h2>\n<h2>Install Tomcat 7<\/h2>\n<p>Installing Tomcat is similar to installing Java. Download the Tomcat 7 binary using the wget tool,<\/p>\n<div>\n<p>wget http:\/\/mirrors.gigenet.com\/apache\/tomcat\/tomcat-7\/v7.0.22\/bin\/apache-tomcat-7.0.22.tar.gz<\/p>\n<p><span style=\"color: #0000ff;\">\u00a0wget\u00a0http:\/\/apache.mirror.cdnetworks.com\/tomcat\/tomcat-7\/v7.0.29\/bin\/apache-tomcat-7.0.29.tar.gz<\/span><\/p>\n<\/div>\n<p>You can find the URL for Tomcat 7 binary from the\u00a0<a href=\"http:\/\/tomcat.apache.org\/download-70.cgi\" target=\"_blank\">Tomcat 7 download page<\/a>. Download the tar.gz version.<\/p>\n<p>I prefer to install Tomcat on \/usr\/share folder. Move the downloaded binary to \/usr\/share folder,<\/p>\n<div>\n<p><span style=\"color: #0000ff;\">mv apache-tomcat-7.0.29.tar.gz\u00a0 \/usr\/share<\/span>\/<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>Extract the Tomcat binaries using the following command,.a<\/p>\n<div>\n<p><span style=\"color: #0000ff;\">tar -xzf apache-tomcat-7.0.29.tar.gz<\/span><\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>To start Tomcat, go to the bin folder of Tomcat installation and then run the startup.sh script,<\/p>\n<div>\n<p><span style=\"color: #0000ff;\">cd \/usr\/share\/apache-tomcat-7.0.29\/bin<\/span><\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<div>\n<p><span style=\"color: #0000ff;\">.\/startup.sh<\/span><\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>You can verify that tomcat is running by wget on the localhost. Note that by default tomcat listens on port 8080,<\/p>\n<div>\n<p>wget http:\/\/localhost:8080<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>If tomcat is running, wget will download the default page as index.html in the current folder.<\/p>\n<p>You can access Tomcat from another machine by replacing the localhost by the actual IP address of your CentOS server. However initially I was unable to access Tomcat from another machine since by default CentOS firewall blocks port 8080.<\/p>\n<h2>Configure CentOS 6 firewall for opening up Tomcat port<\/h2>\n<p>Even the minimal install of CentOS has the firewall up and running. By default the firewall restricts access to various ports and that includes the default tomcat port 8080.<\/p>\n<p>To open port 8080, we need to permanently change the\u00a0<strong>iptables<\/strong>\u00a0on CentOS. Edit the<strong>\/etc\/sysconfig\/iptables<\/strong>\u00a0file and add the following line to the top of the file,<\/p>\n<blockquote><p>-A INPUT -m state \u2013state NEW -m tcp -p tcp \u2013dport 8080 -j ACCEPT<\/p><\/blockquote>\n<p>You need to add this at the top of the file since iptables are processed from bottom to top. If you add the entry at the bottom, it may get overridden by an entry above.<\/p>\n<p>For editing files, I use the\u00a0<strong>vi<\/strong>\u00a0tool which is available as part of CentOS minimal install. You can also install other editors such\u00a0<strong>nano<\/strong>\u00a0using the yum installer.<\/p>\n<p>After making changes to the iptables file, restart the iptables service,<\/p>\n<div>\n<p>service iptables restart<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>The modified iptables file in my system,<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" title=\"Modified iptables for Tomcat on CentOS 6\" src=\"http:\/\/www.distrotips.com\/wp-content\/uploads\/2011\/11\/image1.png\" alt=\"Modified iptables for Tomcat on CentOS 6\" width=\"604\" height=\"226\" border=\"0\" \/><\/p>\n<p>Now you should be able to access the Tomcat 7 default page from another machine. If you still have problems double check that Tomcat 7 process is running,<\/p>\n<div>\n<p>ps -ef | grep tomcat<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<p>You should see a result containing tomcat as shown below,<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" title=\"Verifying whether Tomcat is running\" src=\"http:\/\/www.distrotips.com\/wp-content\/uploads\/2011\/11\/image2.png\" alt=\"Verifying whether Tomcat is running\" width=\"604\" height=\"176\" border=\"0\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Installing Tomcat 7 on CentOS 6 \ucc38\uc870 : http:\/\/blog.naver.com\/PostView.nhn?blogId=cjw8349&amp;logNo=20160687770 \ucc38\uc870 :\u00a0http:\/\/www.server-world.info\/en\/note?os=CentOS_6&amp;p=tomcat7 CentOS is a stable Linux distribution suited for running web application servers such as <a class=\"mh-excerpt-more\" href=\"https:\/\/www.auctionpro.co.kr\/?p=290\" title=\"Installing Tomcat 7 on CentOS 6\">[&#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":[11],"tags":[],"class_list":["post-290","post","type-post","status-publish","format-standard","hentry","category-centos"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Installing Tomcat 7 on CentOS 6 - 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=290\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing Tomcat 7 on CentOS 6 - AuctionPro\" \/>\n<meta property=\"og:description\" content=\"Installing Tomcat 7 on CentOS 6 \ucc38\uc870 : http:\/\/blog.naver.com\/PostView.nhn?blogId=cjw8349&amp;logNo=20160687770 \ucc38\uc870 :\u00a0http:\/\/www.server-world.info\/en\/note?os=CentOS_6&amp;p=tomcat7 CentOS is a stable Linux distribution suited for running web application servers such as [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auctionpro.co.kr\/?p=290\" \/>\n<meta property=\"og:site_name\" content=\"AuctionPro\" \/>\n<meta property=\"article:published_time\" content=\"2012-08-17T02:38:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2012-08-28T14:59:31+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.distrotips.com\/wp-content\/uploads\/2011\/11\/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=\"5\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=290#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290\"},\"author\":{\"name\":\"golgol\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"headline\":\"Installing Tomcat 7 on CentOS 6\",\"datePublished\":\"2012-08-17T02:38:46+00:00\",\"dateModified\":\"2012-08-28T14:59:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290\"},\"wordCount\":910,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.distrotips.com\\\/wp-content\\\/uploads\\\/2011\\\/11\\\/image.png\",\"articleSection\":[\"[OS]CentOS\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290\",\"name\":\"Installing Tomcat 7 on CentOS 6 - AuctionPro\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.distrotips.com\\\/wp-content\\\/uploads\\\/2011\\\/11\\\/image.png\",\"datePublished\":\"2012-08-17T02:38:46+00:00\",\"dateModified\":\"2012-08-28T14:59:31+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290#primaryimage\",\"url\":\"http:\\\/\\\/www.distrotips.com\\\/wp-content\\\/uploads\\\/2011\\\/11\\\/image.png\",\"contentUrl\":\"http:\\\/\\\/www.distrotips.com\\\/wp-content\\\/uploads\\\/2011\\\/11\\\/image.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=290#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing Tomcat 7 on CentOS 6\"}]},{\"@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":"Installing Tomcat 7 on CentOS 6 - 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=290","og_locale":"ko_KR","og_type":"article","og_title":"Installing Tomcat 7 on CentOS 6 - AuctionPro","og_description":"Installing Tomcat 7 on CentOS 6 \ucc38\uc870 : http:\/\/blog.naver.com\/PostView.nhn?blogId=cjw8349&amp;logNo=20160687770 \ucc38\uc870 :\u00a0http:\/\/www.server-world.info\/en\/note?os=CentOS_6&amp;p=tomcat7 CentOS is a stable Linux distribution suited for running web application servers such as [...]","og_url":"https:\/\/www.auctionpro.co.kr\/?p=290","og_site_name":"AuctionPro","article_published_time":"2012-08-17T02:38:46+00:00","article_modified_time":"2012-08-28T14:59:31+00:00","og_image":[{"url":"http:\/\/www.distrotips.com\/wp-content\/uploads\/2011\/11\/image.png","type":"","width":"","height":""}],"author":"golgol","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"golgol","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auctionpro.co.kr\/?p=290#article","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=290"},"author":{"name":"golgol","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"headline":"Installing Tomcat 7 on CentOS 6","datePublished":"2012-08-17T02:38:46+00:00","dateModified":"2012-08-28T14:59:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=290"},"wordCount":910,"commentCount":0,"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=290#primaryimage"},"thumbnailUrl":"http:\/\/www.distrotips.com\/wp-content\/uploads\/2011\/11\/image.png","articleSection":["[OS]CentOS"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auctionpro.co.kr\/?p=290#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auctionpro.co.kr\/?p=290","url":"https:\/\/www.auctionpro.co.kr\/?p=290","name":"Installing Tomcat 7 on CentOS 6 - AuctionPro","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=290#primaryimage"},"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=290#primaryimage"},"thumbnailUrl":"http:\/\/www.distrotips.com\/wp-content\/uploads\/2011\/11\/image.png","datePublished":"2012-08-17T02:38:46+00:00","dateModified":"2012-08-28T14:59:31+00:00","author":{"@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"breadcrumb":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=290#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auctionpro.co.kr\/?p=290"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.auctionpro.co.kr\/?p=290#primaryimage","url":"http:\/\/www.distrotips.com\/wp-content\/uploads\/2011\/11\/image.png","contentUrl":"http:\/\/www.distrotips.com\/wp-content\/uploads\/2011\/11\/image.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.auctionpro.co.kr\/?p=290#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/www.auctionpro.co.kr\/"},{"@type":"ListItem","position":2,"name":"Installing Tomcat 7 on CentOS 6"}]},{"@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\/290","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=290"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/290\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=290"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=290"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=290"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}