{"id":739,"date":"2016-08-02T17:47:30","date_gmt":"2016-08-02T17:47:30","guid":{"rendered":"http:\/\/www.dbafox.com\/?p=739"},"modified":"2016-08-02T17:47:30","modified_gmt":"2016-08-02T17:47:30","slug":"phpmyadmin-allow-remote-access-to-phpmyadmin","status":"publish","type":"post","link":"https:\/\/dbafox.com\/?p=739","title":{"rendered":"phpMyAdmin &#8211; allow remote access to phpMyAdmin"},"content":{"rendered":"<pre>\r\nTo allow access to phpMyAdmin on a server from a remote browser, edit the file:\r\n\r\n\/etc\/httpd\/conf.d\/phpMyAdmin.conf\r\n\r\nand add lines as follows (example allow remote access from 192.168.1.107)\r\n\r\n# phpMyAdmin - Web based MySQL browser written in php\r\n#\r\n# Allows only localhost by default\r\n#\r\n# But allowing phpMyAdmin to anyone other than localhost should be considered\r\n# dangerous unless properly secured by SSL\r\n\r\nAlias \/phpMyAdmin \/usr\/share\/phpMyAdmin\r\nAlias \/phpmyadmin \/usr\/share\/phpMyAdmin\r\n\r\n<Directory \/usr\/share\/phpMyAdmin\/>\r\n   AddDefaultCharset UTF-8\r\n\r\n   <IfModule mod_authz_core.c>\r\n     # Apache 2.4\r\n     <RequireAny>\r\n       Require ip 127.0.0.1\r\n       Require ip ::1\r\n       Require ip 192.168.1.107\r\n     <\/RequireAny>\r\n   <\/IfModule>\r\n   <IfModule !mod_authz_core.c>\r\n     # Apache 2.2\r\n     Order Deny,Allow\r\n     Deny from All\r\n     Allow from 127.0.0.1\r\n     Allow from ::1\r\n     Allow from All\r\n   <\/IfModule>\r\n<\/Directory>\r\n\r\n<Directory \/usr\/share\/phpMyAdmin\/setup\/>\r\n   <IfModule mod_authz_core.c>\r\n     # Apache 2.4\r\n     <RequireAny>\r\n       Require ip 127.0.0.1\r\n       Require ip ::1\r\n       Require ip 192.168.1.107\r\n     <\/RequireAny>\r\n   <\/IfModule>\r\n   <IfModule !mod_authz_core.c>\r\n     # Apache 2.2\r\n     Order Deny,Allow\r\n     Deny from All\r\n     Allow from 127.0.0.1\r\n     Allow from ::1\r\n     Allow from 192.168.1.107\r\n   <\/IfModule>\r\n<\/Directory>\r\n\r\n# These directories do not require access over HTTP - taken from the original\r\n# phpMyAdmin upstream tarball\r\n#\r\n<Directory \/usr\/share\/phpMyAdmin\/libraries\/>\r\n    Order Deny,Allow\r\n    Deny from All\r\n<\/Directory>\r\n\r\n<Directory \/usr\/share\/phpMyAdmin\/setup\/lib\/>\r\n    Order Deny,Allow\r\n    Deny from All\r\n<\/Directory>\r\n\r\n<Directory \/usr\/share\/phpMyAdmin\/setup\/frames\/>\r\n    Order Deny,Allow\r\n    Deny from All\r\n<\/Directory>\r\n\r\n# This configuration prevents mod_security at phpMyAdmin directories from\r\n# filtering SQL etc.  This may break your mod_security implementation.\r\n#\r\n#<IfModule mod_security.c>\r\n#    <Directory \/usr\/share\/phpMyAdmin\/>\r\n#        SecRuleInheritance Off\r\n#    <\/Directory>\r\n#<\/IfModule>\r\n\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>To allow access to phpMyAdmin on a server from a remote browser, edit the file: \/etc\/httpd\/conf.d\/phpMyAdmin.conf and add lines as follows (example allow remote access from 192.168.1.107) # phpMyAdmin &#8211; Web based MySQL browser written in php # # Allows &hellip; <a href=\"https:\/\/dbafox.com\/?p=739\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"pgc_sgb_lightbox_settings":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[37],"tags":[39,40,38],"class_list":["post-739","post","type-post","status-publish","format-standard","hentry","category-phpmyadmin","tag-mariadb","tag-mysql","tag-phpmyadmin"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>phpMyAdmin - allow remote access to phpMyAdmin - dbafox<\/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:\/\/dbafox.com\/?p=739\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"phpMyAdmin - allow remote access to phpMyAdmin - dbafox\" \/>\n<meta property=\"og:description\" content=\"To allow access to phpMyAdmin on a server from a remote browser, edit the file: \/etc\/httpd\/conf.d\/phpMyAdmin.conf and add lines as follows (example allow remote access from 192.168.1.107) # phpMyAdmin - Web based MySQL browser written in php # # Allows &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbafox.com\/?p=739\" \/>\n<meta property=\"og:site_name\" content=\"dbafox\" \/>\n<meta property=\"article:published_time\" content=\"2016-08-02T17:47:30+00:00\" \/>\n<meta name=\"author\" content=\"Ray Fox\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ray Fox\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbafox.com\/?p=739\",\"url\":\"https:\/\/dbafox.com\/?p=739\",\"name\":\"phpMyAdmin - allow remote access to phpMyAdmin - dbafox\",\"isPartOf\":{\"@id\":\"https:\/\/dbafox.com\/#website\"},\"datePublished\":\"2016-08-02T17:47:30+00:00\",\"author\":{\"@id\":\"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb\"},\"breadcrumb\":{\"@id\":\"https:\/\/dbafox.com\/?p=739#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbafox.com\/?p=739\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbafox.com\/?p=739#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbafox.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"phpMyAdmin &#8211; allow remote access to phpMyAdmin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbafox.com\/#website\",\"url\":\"https:\/\/dbafox.com\/\",\"name\":\"dbafox\",\"description\":\"DBA Technical Information\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbafox.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb\",\"name\":\"Ray Fox\",\"sameAs\":[\"http:\/\/www.dbafox.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"phpMyAdmin - allow remote access to phpMyAdmin - dbafox","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:\/\/dbafox.com\/?p=739","og_locale":"en_GB","og_type":"article","og_title":"phpMyAdmin - allow remote access to phpMyAdmin - dbafox","og_description":"To allow access to phpMyAdmin on a server from a remote browser, edit the file: \/etc\/httpd\/conf.d\/phpMyAdmin.conf and add lines as follows (example allow remote access from 192.168.1.107) # phpMyAdmin - Web based MySQL browser written in php # # Allows &hellip; Continue reading &rarr;","og_url":"https:\/\/dbafox.com\/?p=739","og_site_name":"dbafox","article_published_time":"2016-08-02T17:47:30+00:00","author":"Ray Fox","twitter_misc":{"Written by":"Ray Fox","Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dbafox.com\/?p=739","url":"https:\/\/dbafox.com\/?p=739","name":"phpMyAdmin - allow remote access to phpMyAdmin - dbafox","isPartOf":{"@id":"https:\/\/dbafox.com\/#website"},"datePublished":"2016-08-02T17:47:30+00:00","author":{"@id":"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb"},"breadcrumb":{"@id":"https:\/\/dbafox.com\/?p=739#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbafox.com\/?p=739"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbafox.com\/?p=739#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbafox.com\/"},{"@type":"ListItem","position":2,"name":"phpMyAdmin &#8211; allow remote access to phpMyAdmin"}]},{"@type":"WebSite","@id":"https:\/\/dbafox.com\/#website","url":"https:\/\/dbafox.com\/","name":"dbafox","description":"DBA Technical Information","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbafox.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb","name":"Ray Fox","sameAs":["http:\/\/www.dbafox.com"]}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p3ecMb-bV","_links":{"self":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts\/739","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=739"}],"version-history":[{"count":1,"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts\/739\/revisions"}],"predecessor-version":[{"id":740,"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts\/739\/revisions\/740"}],"wp:attachment":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=739"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=739"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=739"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}