{"id":2012,"date":"2017-09-19T00:05:47","date_gmt":"2017-09-18T16:05:47","guid":{"rendered":"https:\/\/blog.brain1981.com\/?p=2012"},"modified":"2025-11-05T17:20:18","modified_gmt":"2025-11-05T09:20:18","slug":"%e6%a3%80%e6%9f%a5lnmp%e4%b8%8amysql%e5%ae%95%e6%9c%ba%e5%b9%b6%e8%87%aa%e5%8a%a8%e9%87%8d%e5%90%af%e6%9c%8d%e5%8a%a1%e7%9a%84%e8%84%9a%e6%9c%ac%e5%92%8c%e4%bd%bf%e7%94%a8%e6%96%b9%e5%bc%8f","status":"publish","type":"post","link":"https:\/\/blog.brain1981.com\/2012.html","title":{"rendered":"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f"},"content":{"rendered":"<p>\u8fd1\u671f\u53d1\u73b0\u670d\u52a1\u5668\u4e0aMySQL\u53c8\u7ecf\u5e38\u5b95\u673a\u4e86\uff0c\u5e73\u5747\u6bcf\u5468\u4e00\u6b21\uff0c\u5e94\u8be5\u548c\u6700\u8fd1\u65b0\u6302\u4e0a\u53bb\u7684\u51e0\u4e2aWordPress\u7f51\u7ad9\u6709\u5173\uff0c\u6bd5\u7adf\u4e00\u53f0\u914d\u7f6e\u4e0d\u7b97\u8c6a\u534e\u7684\u4e3b\u673a\u4e0a\u6302\u4e8610\u4e2aWP\u7f51\u7ad9\uff0c\u538b\u529b\u592a\u5927\u96be\u514d\u4f1a\u5185\u5b58\u4e0d\u591f\u9020\u6210\u5b95\u673a\u3002\u6bcf\u6b21\u5b95\u673a\u90fd\u9700\u8981\u81ea\u5df1\u91cd\u542fMySQL\u4e5f\u6bd4\u8f83\u9ebb\u70e6\uff0c\u5982\u679c\u662f\u5ba2\u6237\u81ea\u5df1\u53d1\u73b0\u7684\uff0c\u611f\u89c9\u66f4\u4e0d\u597d\uff0c\u6240\u4ee5\u7f51\u4e0a\u627e\u4e86\u4e2a\u65e0\u4eba\u503c\u5b88\u7684\u811a\u672c\u5148\u7528\u8d77\u6765\u3002<!--more--><\/p>\n<p>\u9996\u5148\u5148\u5efa\u7acb\u4e00\u4e2a\u811a\u672c\u6587\u4ef6checkmysql.sh\uff0c\u5185\u5bb9\u5982\u4e0b<\/p>\n<pre>\r\n#!\/bin\/bash \r\n#\/usr\/bin\/nmap localhost | grep 3306 \r\n#lsof -i:3306 \r\nMYSQLPORT=`netstat -na|grep \"LISTEN\"|grep \"3306\"|awk -F[:\" \"]+ '{print $5}'` \r\n \r\nfunction checkMysqlStatus(){ \r\n    \/usr\/bin\/mysql -uroot -p11111 --connect_timeout=5 -e \"show databases;\" &>\/dev\/null 2>&1 \r\n    if [ $? -ne 0 ] \r\n    then \r\n        restartMysqlService \r\n        if [ \"$MYSQLPORT\" == \"3306\" ];then \r\n            echo \"mysql restart successful......\"   \r\n        else \r\n            echo \"mysql restart failure......\" \r\n            echo \"Server: $MYSQLIP mysql is down, please try to restart mysql by manual!\" > \/var\/log\/mysqlerr \r\n            mail -s \"WARN! server: $MYSQLIP  mysql is down\" xxx@xxx.com < \/var\/log\/mysqlerr \r\n        fi \r\n    else \r\n        echo \"mysql is running...\" \r\n    fi \r\n} \r\n \r\nfunction restartMysqlService(){ \r\n    echo \"try to restart the mysql service......\" \r\n    \/bin\/ps aux |grep mysql |grep -v grep | awk '{print $2}' | xargs kill -9 \r\n    service mysql start \r\n} \r\n \r\nif [ \"$MYSQLPORT\" == \"3306\" ] \r\nthen \r\n    checkMysqlStatus \r\nelse \r\n    restartMysqlService \r\nfi\r\n<\/pre>\n<p>\u4ee5\u4e0axxx@xxx.com\u66ff\u6362\u6210\u81ea\u5df1\u7684\u90ae\u7bb1\u5730\u5740\uff0c\u5982\u679cMySQL\u91cd\u542f\u5931\u8d25\u53ef\u4ee5\u6536\u5230\u63d0\u9192\u90ae\u4ef6\u3002<\/p>\n<p>\u628a\u8be5\u6587\u4ef6\u4e0a\u4f20\u5230\u670d\u52a1\u5668\u4e0a\uff0c\u6211\u7684\u5bf9\u5e94\u4f4d\u7f6e\u662f\/root\/lnmp1.4\/tools\/checkmysql.sh<br \/>\n\u4e4b\u6240\u4ee5\u4e0a\u4f20\u8fd9\u4e2a\u4f4d\u7f6e\u662f\u56e0\u4e3a\u8fd9\u91cc\u8fd8\u5b58\u653e\u4e86lnmp\u4f5c\u8005\u5199\u7684\u5176\u4ed6\u51e0\u4e2a\u7ef4\u62a4\u811a\u672c\uff0c\u4ee5\u540e\u627e\u8d77\u6765\u4e5f\u65b9\u4fbf<\/p>\n<p>\u4e0a\u4f20\u5b8c\u6bd5\u540e\uff0c\u6253\u5f00\u670d\u52a1\u5668\u4e0a\u7684\/etc\/crontab \u5b9a\u65f6\u4efb\u52a1\u6587\u4ef6\uff0c\u5728\u6700\u5e95\u4e0b\u52a0\u4e00\u884c\u5e76\u4fdd\u5b58\uff0c\u6211\u8bbe\u7f6e\u4e86\u6bcf20\u5206\u68c0\u67e5\u4e00\u6b21\uff1a<\/p>\n<pre>\r\n*\/20 * * * * root \/bin\/bash \/root\/lnmp1.4\/tools\/checkmysql.sh\r\n<\/pre>\n<p>\u7136\u540e\u6dfb\u52a0\u8fd9\u4e2a\u811a\u672c\u6587\u4ef6\u7684\u6267\u884c\u6743\u9650\uff0c\u547d\u4ee4<\/p>\n<pre>\r\nchmod +x \/root\/lnmp1.4\/tools\/checkmysql.sh\r\n<\/pre>\n<p>\u6700\u540e\u91cd\u542f\u4e00\u4e0b\u5b9a\u65f6\u4efb\u52a1\uff1a<\/p>\n<pre>\r\nservice crond restart\r\n<\/pre>\n<p>\u5927\u529f\u544a\u6210\u3002\u8fc7\u6bb5\u65f6\u95f4\u518d\u56de\u6765\u770b\u770b\u65e5\u5fd7\u6587\u4ef6\uff0c\u662f\u5426\u5b95\u673a\u9891\u7e41\uff0c\u5982\u679c\u91cd\u542f\u7684\u6bd4\u8f83\u591a\uff0c\u5c31\u8981\u7ed9\u4e91\u4e3b\u673a\u52a0\u914d\u7f6e\u54af\uff01<\/p>\n<p>Linux\u8ba1\u5212\u4efb\u52a1\u76f8\u5173\u77e5\u8bc6\u6211\u53c2\u8003\u4e86\u8fd9\u4e2a\u94fe\u63a5\uff1a<a href=\"https:\/\/www.cnblogs.com\/xd502djj\/p\/4292781.html\" rel=\"noopener noreferrer\" target=\"_blank\">https:\/\/www.cnblogs.com\/xd502djj\/p\/4292781.html<\/a><br \/>\n----------------------<br \/>\n<strong>2019\u5e7410\u670814\u65e5\u66f4\u65b0<\/strong><br \/>\n\u590d\u76d8\u4ee5\u4e0a\u8fd9\u7bc7\u6587\u7ae0\uff0c\u7531\u4e8echeckmysql\u811a\u672c\u662f\u7f51\u4e0a\u6284\u7684\uff0c\u5e76\u6ca1\u6709\u597d\u597d\u9a8c\u8bc1\u8fc7\u90ae\u7bb1\u662f\u5426\u80fd\u53d1\u9001\u90ae\u4ef6\u3002\u5176\u5b9e\u662f\u4e0d\u80fd\u53d1\u9001\u7684\uff0c\u56e0\u4e3a\u73b0\u5728\u670d\u52a1\u5668\u7684\u8fd9\u4e2a\u529f\u80fd\u5176\u5b9e\u4e00\u76f4\u662f\u88ab\u4e25\u63a7\u4ee5\u9632\u6b62\u4e71\u7528\u3002\u4e8e\u662f\u6362\u4e00\u4e2a\u7b80\u5355\u70b9\u7684\u811a\u672c\uff1a<\/p>\n<pre>\r\n#!\/bin\/bash\r\n\r\n# \u8bbe\u7f6e\u4e0e \/etc\/cron.hourly\/ \u76f8\u540c\u7684\u73af\u5883\r\nexport PATH=\/usr\/local\/sbin:\/usr\/local\/bin:\/usr\/sbin:\/usr\/bin:\/sbin:\/bin\r\nexport SHELL=\/bin\/bash\r\nexport USER=root\r\nexport LOGNAME=root\r\nexport HOME=\/root\r\n\r\nLOG_FILE=\"\/home\/wwwlogs\/mysql_messages\"\r\n\r\npgrep -x mysqld &> \/dev\/null\r\nif [ $? -ne 0 ]\r\nthen\r\necho \"`date` : MySQL is stop.\">> $LOG_FILE\r\nservice mysql start\r\necho \"`date` : MySQL server is re-started.\">> $LOG_FILE\r\nelse\r\necho \"`date` : MySQL server is running.\">> $LOG_FILE\r\nfi\r\n<\/pre>\n<p>\u811a\u672c\u6587\u4ef6\u4e0a\u4f20\u5b8c\u6bd5\u540e\uff0c\u5148\u8bd5\u8fd0\u884c\u4e00\u4e0b\u8fd9\u4e2a\u811a\u672c\uff0c\u53d1\u73b0\u6709\u62a5\u9519<br \/>\n\u8fd8\u9700\u7528VM\u6253\u5f00\u8fd9\u4e2a\u811a\u672c\u6587\u4ef6\uff0c\u8f93\u5165\u547d\u4ee4<br \/>\n:set ff=unix<br \/>\n\u4fee\u6539\u5176\u683c\u5f0f\uff0c\u8fd9\u4e2a\u811a\u672c\u624d\u53ef\u4ee5\u88ab\u81ea\u52a8\u6267\u884c\u3002<\/p>\n<p>\u7136\u540e\u8fd0\u884c\u4ee5\u4e0b\u547d\u4ee4\u751f\u6210\u4e00\u4e2a\u7a7a\u767d\u7684\u65e5\u5fd7\u6587\u4ef6\uff1a<\/p>\n<pre>\r\nvim \/home\/wwwlogs\/mysql_messages\r\n<\/pre>\n<p>\u7136\u540e\u9000\u51faVM\u5373\u53ef\u3002<\/p>\n<p>\u5982\u679c\u60f3\u5077\u4e2a\u61d2\u8fd8\u53ef\u4ee5\u628a\u6b64\u811a\u672c\u76f4\u63a5\u5b58\u5230\/etc\/cron.hourly\/ \u76ee\u5f55\u4e0b\uff0c\u4e5f\u8981\u8bbe\u7f6e\u6743\u9650\uff1a<\/p>\n<pre>\r\nchmod +x \/etc\/cron.hourly\/checkmysql.sh\r\n<\/pre>\n<p>\u8fd9\u6837\u6bcf\u5c0f\u65f6\u5c31\u4f1a\u81ea\u52a8\u6267\u884c\u4e00\u6b21\uff0c\u4e0d\u7528\u4fee\u6539crontab\u8bbe\u7f6e\u4e86\u3002<\/p>\n<p>\u9694\u4e00\u6bb5\u65f6\u95f4\u68c0\u67e5\u4e00\u4e0bmysql_messages\u662f\u5426\u6709\u9891\u7e41\u7684\u62a5\u9519\u8bb0\u5f55\u518d\u51b3\u5b9a\u662f\u5426\u7ed9\u4e3b\u673a\u52a0\u914d\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u8fd1\u671f\u53d1\u73b0\u670d\u52a1\u5668\u4e0aMySQL\u53c8\u7ecf\u5e38\u5b95\u673a\u4e86\uff0c\u5e73\u5747\u6bcf\u5468\u4e00\u6b21\uff0c\u5e94\u8be5\u548c\u6700\u8fd1\u65b0\u6302\u4e0a\u53bb\u7684\u51e0\u4e2aWordPress\u7f51\u7ad9\u6709\u5173\uff0c\u6bd5\u7adf [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[70,42,13],"class_list":["post-2012","post","type-post","status-publish","format-standard","hentry","category-others","tag-lnmp","tag-mysql","tag-13"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f - Brain\u7684\u6280\u672f\u7b14\u8bb0<\/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:\/\/blog.brain1981.com\/2012.html\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f - Brain\u7684\u6280\u672f\u7b14\u8bb0\" \/>\n<meta property=\"og:description\" content=\"\u8fd1\u671f\u53d1\u73b0\u670d\u52a1\u5668\u4e0aMySQL\u53c8\u7ecf\u5e38\u5b95\u673a\u4e86\uff0c\u5e73\u5747\u6bcf\u5468\u4e00\u6b21\uff0c\u5e94\u8be5\u548c\u6700\u8fd1\u65b0\u6302\u4e0a\u53bb\u7684\u51e0\u4e2aWordPress\u7f51\u7ad9\u6709\u5173\uff0c\u6bd5\u7adf [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.brain1981.com\/2012.html\" \/>\n<meta property=\"og:site_name\" content=\"Brain\u7684\u6280\u672f\u7b14\u8bb0\" \/>\n<meta property=\"article:published_time\" content=\"2017-09-18T16:05:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-05T09:20:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.brain1981.com\/wp-content\/uploads\/2026\/01\/200.png\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"133\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Brain\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brain\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/2012.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/2012.html\"},\"author\":{\"name\":\"Brain\",\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/#\\\/schema\\\/person\\\/7689202bbb2f967b4c66309c1cc5e65d\"},\"headline\":\"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f\",\"datePublished\":\"2017-09-18T16:05:47+00:00\",\"dateModified\":\"2025-11-05T09:20:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/2012.html\"},\"wordCount\":42,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/#\\\/schema\\\/person\\\/7689202bbb2f967b4c66309c1cc5e65d\"},\"keywords\":[\"LNMP\",\"MySQL\",\"\u670d\u52a1\u5668\"],\"articleSection\":[\"\u5176\u4ed6\u6280\u672f\u7814\u7a76\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.brain1981.com\\\/2012.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/2012.html\",\"url\":\"https:\\\/\\\/blog.brain1981.com\\\/2012.html\",\"name\":\"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f - Brain\u7684\u6280\u672f\u7b14\u8bb0\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/#website\"},\"datePublished\":\"2017-09-18T16:05:47+00:00\",\"dateModified\":\"2025-11-05T09:20:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/2012.html#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.brain1981.com\\\/2012.html\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/2012.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\\\/\\\/blog.brain1981.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/#website\",\"url\":\"https:\\\/\\\/blog.brain1981.com\\\/\",\"name\":\"Brain\u7684\u6280\u672f\u7b14\u8bb0\",\"description\":\"WordPress\u5efa\u7ad9\u5f00\u53d1\u6559\u7a0b\u4e0e\u6280\u672f\u7814\u7a76\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/#\\\/schema\\\/person\\\/7689202bbb2f967b4c66309c1cc5e65d\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.brain1981.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/#\\\/schema\\\/person\\\/7689202bbb2f967b4c66309c1cc5e65d\",\"name\":\"Brain\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/favicon.webp\",\"url\":\"https:\\\/\\\/blog.brain1981.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/favicon.webp\",\"contentUrl\":\"https:\\\/\\\/blog.brain1981.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/favicon.webp\",\"width\":75,\"height\":75,\"caption\":\"Brain\"},\"logo\":{\"@id\":\"https:\\\/\\\/blog.brain1981.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/favicon.webp\"},\"sameAs\":[\"http:\\\/\\\/brain1981.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f - Brain\u7684\u6280\u672f\u7b14\u8bb0","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:\/\/blog.brain1981.com\/2012.html","og_locale":"zh_CN","og_type":"article","og_title":"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f - Brain\u7684\u6280\u672f\u7b14\u8bb0","og_description":"\u8fd1\u671f\u53d1\u73b0\u670d\u52a1\u5668\u4e0aMySQL\u53c8\u7ecf\u5e38\u5b95\u673a\u4e86\uff0c\u5e73\u5747\u6bcf\u5468\u4e00\u6b21\uff0c\u5e94\u8be5\u548c\u6700\u8fd1\u65b0\u6302\u4e0a\u53bb\u7684\u51e0\u4e2aWordPress\u7f51\u7ad9\u6709\u5173\uff0c\u6bd5\u7adf [&hellip;]","og_url":"https:\/\/blog.brain1981.com\/2012.html","og_site_name":"Brain\u7684\u6280\u672f\u7b14\u8bb0","article_published_time":"2017-09-18T16:05:47+00:00","article_modified_time":"2025-11-05T09:20:18+00:00","og_image":[{"width":200,"height":133,"url":"https:\/\/blog.brain1981.com\/wp-content\/uploads\/2026\/01\/200.png","type":"image\/png"}],"author":"Brain","twitter_misc":{"\u4f5c\u8005":"Brain","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.brain1981.com\/2012.html#article","isPartOf":{"@id":"https:\/\/blog.brain1981.com\/2012.html"},"author":{"name":"Brain","@id":"https:\/\/blog.brain1981.com\/#\/schema\/person\/7689202bbb2f967b4c66309c1cc5e65d"},"headline":"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f","datePublished":"2017-09-18T16:05:47+00:00","dateModified":"2025-11-05T09:20:18+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.brain1981.com\/2012.html"},"wordCount":42,"commentCount":0,"publisher":{"@id":"https:\/\/blog.brain1981.com\/#\/schema\/person\/7689202bbb2f967b4c66309c1cc5e65d"},"keywords":["LNMP","MySQL","\u670d\u52a1\u5668"],"articleSection":["\u5176\u4ed6\u6280\u672f\u7814\u7a76"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.brain1981.com\/2012.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.brain1981.com\/2012.html","url":"https:\/\/blog.brain1981.com\/2012.html","name":"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f - Brain\u7684\u6280\u672f\u7b14\u8bb0","isPartOf":{"@id":"https:\/\/blog.brain1981.com\/#website"},"datePublished":"2017-09-18T16:05:47+00:00","dateModified":"2025-11-05T09:20:18+00:00","breadcrumb":{"@id":"https:\/\/blog.brain1981.com\/2012.html#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.brain1981.com\/2012.html"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blog.brain1981.com\/2012.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/blog.brain1981.com\/"},{"@type":"ListItem","position":2,"name":"\u68c0\u67e5LNMP\u4e0aMySQL\u5b95\u673a\u5e76\u81ea\u52a8\u91cd\u542f\u670d\u52a1\u7684\u811a\u672c\u548c\u4f7f\u7528\u65b9\u5f0f"}]},{"@type":"WebSite","@id":"https:\/\/blog.brain1981.com\/#website","url":"https:\/\/blog.brain1981.com\/","name":"Brain\u7684\u6280\u672f\u7b14\u8bb0","description":"WordPress\u5efa\u7ad9\u5f00\u53d1\u6559\u7a0b\u4e0e\u6280\u672f\u7814\u7a76","publisher":{"@id":"https:\/\/blog.brain1981.com\/#\/schema\/person\/7689202bbb2f967b4c66309c1cc5e65d"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.brain1981.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":["Person","Organization"],"@id":"https:\/\/blog.brain1981.com\/#\/schema\/person\/7689202bbb2f967b4c66309c1cc5e65d","name":"Brain","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/blog.brain1981.com\/wp-content\/uploads\/2026\/01\/favicon.webp","url":"https:\/\/blog.brain1981.com\/wp-content\/uploads\/2026\/01\/favicon.webp","contentUrl":"https:\/\/blog.brain1981.com\/wp-content\/uploads\/2026\/01\/favicon.webp","width":75,"height":75,"caption":"Brain"},"logo":{"@id":"https:\/\/blog.brain1981.com\/wp-content\/uploads\/2026\/01\/favicon.webp"},"sameAs":["http:\/\/brain1981.com"]}]}},"views":5529,"_links":{"self":[{"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/posts\/2012","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/comments?post=2012"}],"version-history":[{"count":14,"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/posts\/2012\/revisions"}],"predecessor-version":[{"id":3478,"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/posts\/2012\/revisions\/3478"}],"wp:attachment":[{"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/media?parent=2012"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/categories?post=2012"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.brain1981.com\/wp-json\/wp\/v2\/tags?post=2012"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}