{"id":6547,"date":"2014-08-30T19:20:21","date_gmt":"2014-08-30T10:20:21","guid":{"rendered":"http:\/\/apollo89.com\/wordpress\/?p=6547"},"modified":"2014-10-06T13:46:06","modified_gmt":"2014-10-06T04:46:06","slug":"mysql-%ec%bf%bc%eb%a6%ac-%ec%86%8d%eb%8f%84%eb%a5%bc-%ec%9c%84%ed%95%9c-%ed%8a%9c%eb%8b%9d-%eb%b0%a9%eb%b2%95","status":"publish","type":"post","link":"https:\/\/apollo89.com\/wordpress\/?p=6547","title":{"rendered":"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95"},"content":{"rendered":"<p>1. \ub290\ub9b0 \ucffc\ub9ac \ud655\uc778<\/p>\n<p>my.cnf \uc5d0 \ub290\ub9b0\ucffc\ub9ac\uc5d0 \ub300\ud55c \ub85c\uadf8 \ub0a8\uae30\uae30<\/p>\n<p>[mysqld] \uc139\uc158\uc5d0 \uc544\ub798\uc758 \ub0b4\uc6a9\uc744 \ucd94\uac00<\/p>\n<pre class=\"lang:default decode:true \" >log-slow-queries = \/var\/log\/mysql\/mysql-slow.log \/\/ slow \ucffc\ub9ac \ub85c\uadf8\ub97c \ub0a8\uae38 \uc704\uce58\r\nlong_query_time = 1  \/\/ \ub290\ub9b0 \ucffc\ub9ac\uc758 \uae30\uc900(\ucd08)\r\n<\/pre>\n<p>2. \ub290\ub9b0 \ucffc\ub9ac\ub97c \ud655\uc778\ud558\uba74, \ud574\ub2f9 \ucffc\ub9ac\uc758 \ubd84\uc11d<\/p>\n<p>\ucffc\ub9ac \ud50c\ub79c\uc744 \ud655\uc778\ud574\uc11c index \ub97c \ud0c0\ub294\uc9c0, \uc544\ub2cc\uc9c0 \ud655\uc778<\/p>\n<pre class=\"lang:mysql decode:true \" >desc select * from table;\r\nexplain select * from table;<\/pre>\n<p>\ud574\ub2f9 \ud14c\uc774\ube14\uc758 index \uc815\ubcf4 \ud655\uc778<\/p>\n<pre class=\"lang:mysql decode:true \" >SHOW INDEX FROM table;<\/pre>\n<p>\ucffc\ub9ac\uc758 \uc870\uac74\uacfc \ud604\uc7ac \uc801\uc6a9\ub41c index \uac00 \uc801\uc808\ud55c\uc9c0 \ud310\ub2e8.<\/p>\n<p>3. index \uc218\uc815<\/p>\n<p>index \ucd94\uac00<\/p>\n<pre class=\"lang:mysql decode:true \" >ALTER  TABLE  contents  add  index  idx_column (column);<\/pre>\n<p>index \uc0ad\uc81c<\/p>\n<pre class=\"lang:mysql decode:true \" >ALTER TABLE table_name DROP INDEX index_name (column_name);<\/pre>\n<p>4. \ubcc4 \uc774\uc0c1\uc774 \uc5c6\ub2e4\uba74, index \ub2e8\ud3b8\ud654\uc77c \uac00\ub2a5\uc131\ub3c4 \uc788\uc73c\ubbc0\ub85c index \uc815\ub9ac<\/p>\n<p>cd mysql\/var\/\ub514\ube44\uba85<br \/>\nmyisamchk -R1 *<br \/>\noptions<br \/>\n-a : \ud769\uc5b4\uc9c4 \uc778\ub371\uc2a4\ub97c \ubaa8\uc544 \uc18d\ub3c4 \ud5a5\uc0c1<br \/>\n-S : \uc778\ub371\uc2a4\ud2b8\ub9ac \uc18c\ud305 \uac80\uc0c9 \uc18d\ub3c4 \ud5a5\uc0c1<br \/>\n-R : \uc778\ub371\uc2a4 \uae30\uc900 \ub808\ucf54\ub4dc \uc815\ub82c \uc18d\ub3c4 \ud5a5\uc0c1<\/p>\n<p>5. mysql DB\ubcc4 \uc0ac\uc6a9\ub7c9\ub3c4 \uccb4\ud06c \ud574\ubcf4\uc790<\/p>\n<pre class=\"lang:mysql decode:true \" >SELECT information_schema.tables.table_schema, \r\n       Sum(data_length) \r\nFROM   information_schema.tables \r\nGROUP  BY information_schema.tables.table_schema <\/pre>\n","protected":false},"excerpt":{"rendered":"<p>1. \ub290\ub9b0 \ucffc\ub9ac \ud655\uc778 my.cnf \uc5d0 \ub290\ub9b0\ucffc\ub9ac\uc5d0 \ub300\ud55c \ub85c\uadf8 \ub0a8\uae30\uae30 [mysqld] \uc139\uc158\uc5d0 \uc544\ub798\uc758 \ub0b4\uc6a9\uc744 \ucd94\uac00 log-slow-queries = \/var\/log\/mysql\/mysql-slow.log \/\/ slow \ucffc\ub9ac \ub85c\uadf8\ub97c \ub0a8\uae38 \uc704\uce58 long_query_time = 1 \/\/ \ub290\ub9b0 \ucffc\ub9ac\uc758 \uae30\uc900(\ucd08) 2. \ub290\ub9b0 \ucffc\ub9ac\ub97c \ud655\uc778\ud558\uba74, \ud574\ub2f9 \ucffc\ub9ac\uc758 \ubd84\uc11d \ucffc\ub9ac \ud50c\ub79c\uc744 &hellip; <a href=\"https:\/\/apollo89.com\/wordpress\/?p=6547\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[685],"tags":[888,90],"class_list":["post-6547","post","type-post","status-publish","format-standard","hentry","category-database-","tag-index","tag-mysql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95 - Apollo89.com<\/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:\/\/apollo89.com\/wordpress\/?p=6547\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95 - Apollo89.com\" \/>\n<meta property=\"og:description\" content=\"1. \ub290\ub9b0 \ucffc\ub9ac \ud655\uc778 my.cnf \uc5d0 \ub290\ub9b0\ucffc\ub9ac\uc5d0 \ub300\ud55c \ub85c\uadf8 \ub0a8\uae30\uae30 [mysqld] \uc139\uc158\uc5d0 \uc544\ub798\uc758 \ub0b4\uc6a9\uc744 \ucd94\uac00 log-slow-queries = \/var\/log\/mysql\/mysql-slow.log \/\/ slow \ucffc\ub9ac \ub85c\uadf8\ub97c \ub0a8\uae38 \uc704\uce58 long_query_time = 1 \/\/ \ub290\ub9b0 \ucffc\ub9ac\uc758 \uae30\uc900(\ucd08) 2. \ub290\ub9b0 \ucffc\ub9ac\ub97c \ud655\uc778\ud558\uba74, \ud574\ub2f9 \ucffc\ub9ac\uc758 \ubd84\uc11d \ucffc\ub9ac \ud50c\ub79c\uc744 &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/apollo89.com\/wordpress\/?p=6547\" \/>\n<meta property=\"og:site_name\" content=\"Apollo89.com\" \/>\n<meta property=\"article:published_time\" content=\"2014-08-30T10:20:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-10-06T04:46:06+00:00\" \/>\n<meta name=\"author\" content=\"apollo89\" \/>\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=\"apollo89\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=6547#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=6547\"},\"author\":{\"name\":\"apollo89\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"headline\":\"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95\",\"datePublished\":\"2014-08-30T10:20:21+00:00\",\"dateModified\":\"2014-10-06T04:46:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=6547\"},\"wordCount\":23,\"commentCount\":0,\"keywords\":[\"INDEX\",\"mysql\"],\"articleSection\":[\"Database\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=6547#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=6547\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=6547\",\"name\":\"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95 - Apollo89.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\"},\"datePublished\":\"2014-08-30T10:20:21+00:00\",\"dateModified\":\"2014-10-06T04:46:06+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=6547#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=6547\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=6547#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/apollo89.com\\\/wordpress\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/\",\"name\":\"Apollo89.com\",\"description\":\"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\",\"name\":\"apollo89\",\"description\":\"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95 - Apollo89.com","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:\/\/apollo89.com\/wordpress\/?p=6547","og_locale":"ko_KR","og_type":"article","og_title":"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95 - Apollo89.com","og_description":"1. \ub290\ub9b0 \ucffc\ub9ac \ud655\uc778 my.cnf \uc5d0 \ub290\ub9b0\ucffc\ub9ac\uc5d0 \ub300\ud55c \ub85c\uadf8 \ub0a8\uae30\uae30 [mysqld] \uc139\uc158\uc5d0 \uc544\ub798\uc758 \ub0b4\uc6a9\uc744 \ucd94\uac00 log-slow-queries = \/var\/log\/mysql\/mysql-slow.log \/\/ slow \ucffc\ub9ac \ub85c\uadf8\ub97c \ub0a8\uae38 \uc704\uce58 long_query_time = 1 \/\/ \ub290\ub9b0 \ucffc\ub9ac\uc758 \uae30\uc900(\ucd08) 2. \ub290\ub9b0 \ucffc\ub9ac\ub97c \ud655\uc778\ud558\uba74, \ud574\ub2f9 \ucffc\ub9ac\uc758 \ubd84\uc11d \ucffc\ub9ac \ud50c\ub79c\uc744 &hellip; Continue reading &rarr;","og_url":"https:\/\/apollo89.com\/wordpress\/?p=6547","og_site_name":"Apollo89.com","article_published_time":"2014-08-30T10:20:21+00:00","article_modified_time":"2014-10-06T04:46:06+00:00","author":"apollo89","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"apollo89"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/apollo89.com\/wordpress\/?p=6547#article","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=6547"},"author":{"name":"apollo89","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"headline":"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95","datePublished":"2014-08-30T10:20:21+00:00","dateModified":"2014-10-06T04:46:06+00:00","mainEntityOfPage":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=6547"},"wordCount":23,"commentCount":0,"keywords":["INDEX","mysql"],"articleSection":["Database"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/apollo89.com\/wordpress\/?p=6547#respond"]}]},{"@type":"WebPage","@id":"https:\/\/apollo89.com\/wordpress\/?p=6547","url":"https:\/\/apollo89.com\/wordpress\/?p=6547","name":"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95 - Apollo89.com","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/#website"},"datePublished":"2014-08-30T10:20:21+00:00","dateModified":"2014-10-06T04:46:06+00:00","author":{"@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"breadcrumb":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=6547#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/apollo89.com\/wordpress\/?p=6547"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/apollo89.com\/wordpress\/?p=6547#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/apollo89.com\/wordpress"},{"@type":"ListItem","position":2,"name":"mysql \ucffc\ub9ac \uc18d\ub3c4\ub97c \uc704\ud55c \ud29c\ub2dd \ubc29\ubc95"}]},{"@type":"WebSite","@id":"https:\/\/apollo89.com\/wordpress\/#website","url":"https:\/\/apollo89.com\/wordpress\/","name":"Apollo89.com","description":"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/apollo89.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82","name":"apollo89","description":"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.","url":"https:\/\/apollo89.com\/wordpress\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/6547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6547"}],"version-history":[{"count":0,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/6547\/revisions"}],"wp:attachment":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}