{"id":6842,"date":"2022-08-19T23:26:44","date_gmt":"2022-08-19T17:56:44","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=6842"},"modified":"2022-08-19T23:28:50","modified_gmt":"2022-08-19T17:58:50","slug":"how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/","title":{"rendered":"How to add Proxy pass rule to access PHPMyAdmin without port number in URL -Plesk"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">Prerequisites<\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li> Credentials to access the Plesk panel<\/li><li> SSH root access&nbsp;<\/li><\/ul>\n\n\n\n<p><br><strong>Implementation<\/strong><\/p>\n\n\n\n<p>Follow the below steps to install MySQL,  Enable remote access to the local MySQL server, and Proxy rule setup in the Plesk panel<br><strong>I. MySQL installation<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Log into Plesk with the credentials<\/li><li>Go to Tools &amp; Settings &gt; Database Servers &gt; Add database server .<br><img loading=\"lazy\" decoding=\"async\" width=\"624\" height=\"327\" src=\"https:\/\/lh5.googleusercontent.com\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog\"><\/li><li>Select MySQL in Database server type, specify a Hostname or IP address, Port number, and Authentication data of another MySQL server.<br>Click on OK.<br>Note: By default, the Administrator\u2019s username for the additional MySQL server is root.<\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/q7ANQcZg-2fSnbewKevIaO5NAapXkxALbcLiDihuRSXxZhKRHpbfGnv-Hc4NNxR54bSRwdDmiIRTmPuYX_SttttooumqIPThjdv7sUsMP_1WPtgHMr5CuDtLNX9S9vmxVnp9gWzFrSISoKZWv82vWQE\" alt=\"\" \/><\/figure>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\"><li>Verify the MySQL successful&nbsp; installation in Tools &amp; Settings &gt; Database Servers&nbsp;<\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/h-8DXDlX9sLW1BjSBHLk6f8LdJ2ZIpEU8_ZJ9BACdy1zbK-CsyQjNttYSJ_215RKbTlSAPOHQHCfd9dNKl6Yos99_ou6uHkBXldd6V-EuUU_xutmY41TySDZPIZtrGW1nPhujrq6-GWk-2bC1dUs99Y\" alt=\"\" \/><\/figure>\n\n\n\n<p><strong>II. Enable remote access to the local MySQL server<\/strong><br><br>1. Go to Tools &amp; Settings &gt; Database Servers &gt; Settings &gt; click Local MySQL Settings<strong><br><br><\/strong><\/p>\n\n\n\n<p>2. Select the Allow local MySQL server to accept external connections checkbox, and then click OK<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/_Ho6AflF_k3_c_5sQmcFNWROIgTDb8XKq0V9rqIFOOwz_Ew5YsXObjkiH7BmaPdgqJV6_ENc0vWnozGO5Gn1jBFhOi-yWxjG7yYooQMnXWeuwxoUjMn1Al9WEheraHJpcZX3pthpnX9FQlgP2e7m8iU\" alt=\"\" \/><\/figure>\n\n\n\n<p>3. Connect to a Plesk server via <a href=\"https:\/\/support.plesk.com\/hc\/en-us\/articles\/115000172834\">SSH<\/a> and open the MySQL configuration file in any text editor. Location of this file is<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><\/li><\/ul>\n\n\n\n<p>For CentOS\/RHEL-based distributions:<br>\/etc\/my.cnf<\/p>\n\n\n\n<p>For Debian\/Ubuntu-based distributions:<br>\/etc\/mysql\/my.cnf<\/p>\n\n\n\n<p>4. Change the bind-address parameter to:<\/p>\n\n\n\n<p>bind-address = 0.0.0.0<\/p>\n\n\n\n<p>Note: 0.0.0.0 means every IP address on the server. If it is required to bind to a specific IP address, specify this particular IP instead of 0.0.0.0<\/p>\n\n\n\n<p>Also, make sure that the skip-networking parameter is not defined.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"5\"><li>After that, restart the MySQL server<br>For CentOS\/RHEL-based distributions:<br># service MariaDB restart<br>For Debian\/Ubuntu-based distributions:<br># service mysql restart<\/li><\/ol>\n\n\n\n<ol class=\"wp-block-list\" start=\"6\"><li>Login to the Mysql server with the credentials that you have created in the previous steps<\/li><\/ol>\n\n\n\n<ol class=\"wp-block-list\" start=\"7\"><li>Grant access to remote IP address and login to MySQL. <br>For example, if it\u2019s required to&nbsp; allow access to the database called database for user with password and remote IP address<\/li><\/ol>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>GRANT ALL ON database.* TO user@&#8217;%&#8217; IDENTIFIED BY &#8216;password&#8217;;<br>CONFIG_TEXT: FLUSH PRIVILEGES;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong><br><\/strong>Note: Replace the % with specific IP if needed.<br><strong><br><\/strong>To create a user that has access to all databases, execute the following query:<br>GRANT ALL PRIVILEGES\u2026<\/p>\n\n\n\n<p><strong>III. Proxy rule setup&nbsp;<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Login to the Plesk panel<\/li><li>Navigate to Domain, select the domain which needs to add a proxy pass<\/li><li>Select Hosting &amp; DNS &gt; Apache &amp;nginx settings<br><\/li><li>&nbsp;Add the rules in the section Additional directives for HTTP &amp; Additional directives for HTTPS. Click on OK<br><br>Additional directives for HTTP<br><\/li><\/ol>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>SSLProxyEngine on<br>ProxyPass \/ http:\/\/hostname.plesk.page:8880\/phpMyAdmin\/<br>ProxyPassReverse \/ http:\/\/hostname.plesk.page:8880\/phpMyAdmin\/<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong><br><\/strong><strong>Additional directives for HTTPS<\/strong><strong><br><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>SSLProxyEngine on<br>ProxyPass \/ http:\/\/hostname.plesk.page:8880\/phpMyAdmin\/<br>ProxyPassReverse \/ https:\/\/hostname.plesk.page:8880\/phpMyAdmin\/<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>5. We can access the phpMyAdmin with the URL mentioned below<br>https:\/\/domainname<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Prerequisites Credentials to access the Plesk panel SSH root access&nbsp; Implementation Follow the below steps to install MySQL, Enable remote access to the local MySQL server, and Proxy rule setup in the Plesk panelI. MySQL installation Log into Plesk with the credentials Go to Tools &amp; Settings &gt; Database Servers&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to add Proxy pass rule to access PHPMyAdmin without port number in URL -Plesk<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":495,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_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":[387,702],"tags":[339,959],"class_list":{"0":"post-6842","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-mysql-database","7":"category-plesk-cpanel","8":"tag-phpmyadmin","9":"tag-pleak","10":"h-entry","12":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Prerequisites Credentials to access the Plesk panel SSH root access&nbsp; Implementation Follow the below steps to install MySQL, Enable remote access to the local MySQL server, and Proxy rule setup in the Plesk panelI. MySQL installation Log into Plesk with the credentials Go to Tools &amp; Settings &gt; Database Servers&hellip; Continue Reading How to add Proxy pass rule to access PHPMyAdmin without port number in URL -Plesk\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-19T17:56:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-19T17:58:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lh5.googleusercontent.com\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog\" \/>\n<meta name=\"author\" content=\"meenakshi k\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"meenakshi k\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/\"},\"author\":{\"name\":\"meenakshi k\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/d573de3a2c02cbeca49e90581a88b98f\"},\"headline\":\"How to add Proxy pass rule to access PHPMyAdmin without port number in URL -Plesk\",\"datePublished\":\"2022-08-19T17:56:44+00:00\",\"dateModified\":\"2022-08-19T17:58:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/\"},\"wordCount\":443,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lh5.googleusercontent.com\\\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog\",\"keywords\":[\"Phpmyadmin\",\"Pleak\"],\"articleSection\":[\"Mysql\",\"plesk\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lh5.googleusercontent.com\\\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog\",\"datePublished\":\"2022-08-19T17:56:44+00:00\",\"dateModified\":\"2022-08-19T17:58:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/#primaryimage\",\"url\":\"https:\\\/\\\/lh5.googleusercontent.com\\\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog\",\"contentUrl\":\"https:\\\/\\\/lh5.googleusercontent.com\\\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add Proxy pass rule to access PHPMyAdmin without port number in URL -Plesk\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/d573de3a2c02cbeca49e90581a88b98f\",\"name\":\"meenakshi k\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/17c0a3923b9a31a41d8de2fdc928e514efe879fe17b6e5d2814b7f81ed2356e5?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/17c0a3923b9a31a41d8de2fdc928e514efe879fe17b6e5d2814b7f81ed2356e5?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/17c0a3923b9a31a41d8de2fdc928e514efe879fe17b6e5d2814b7f81ed2356e5?s=96&r=g\",\"caption\":\"meenakshi k\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/meenakshi\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Prerequisites Credentials to access the Plesk panel SSH root access&nbsp; Implementation Follow the below steps to install MySQL, Enable remote access to the local MySQL server, and Proxy rule setup in the Plesk panelI. MySQL installation Log into Plesk with the credentials Go to Tools &amp; Settings &gt; Database Servers&hellip; Continue Reading How to add Proxy pass rule to access PHPMyAdmin without port number in URL -Plesk","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2022-08-19T17:56:44+00:00","article_modified_time":"2022-08-19T17:58:50+00:00","og_image":[{"url":"https:\/\/lh5.googleusercontent.com\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog","type":"","width":"","height":""}],"author":"meenakshi k","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"meenakshi k","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/"},"author":{"name":"meenakshi k","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/d573de3a2c02cbeca49e90581a88b98f"},"headline":"How to add Proxy pass rule to access PHPMyAdmin without port number in URL -Plesk","datePublished":"2022-08-19T17:56:44+00:00","dateModified":"2022-08-19T17:58:50+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/"},"wordCount":443,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/#primaryimage"},"thumbnailUrl":"https:\/\/lh5.googleusercontent.com\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog","keywords":["Phpmyadmin","Pleak"],"articleSection":["Mysql","plesk"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/#primaryimage"},"thumbnailUrl":"https:\/\/lh5.googleusercontent.com\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog","datePublished":"2022-08-19T17:56:44+00:00","dateModified":"2022-08-19T17:58:50+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/#primaryimage","url":"https:\/\/lh5.googleusercontent.com\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog","contentUrl":"https:\/\/lh5.googleusercontent.com\/8aVX3PFlQuL8XxrJGd0zGMsCl98-JPrI5HrKSBKP_816mBAslCKyDJSOjHnArudmtDFdZu7cp0EBjVNYioUktFRvPqFk8-XTLW8udass8E7brBSvvLjDlg1rK9-2UVDey99DTL8gx9XVe_QXw0OWKog"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-add-proxy-pass-rule-to-access-phpmyadmin-without-port-number-in-url-plesk\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add Proxy pass rule to access PHPMyAdmin without port number in URL -Plesk"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/d573de3a2c02cbeca49e90581a88b98f","name":"meenakshi k","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/17c0a3923b9a31a41d8de2fdc928e514efe879fe17b6e5d2814b7f81ed2356e5?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/17c0a3923b9a31a41d8de2fdc928e514efe879fe17b6e5d2814b7f81ed2356e5?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/17c0a3923b9a31a41d8de2fdc928e514efe879fe17b6e5d2814b7f81ed2356e5?s=96&r=g","caption":"meenakshi k"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/meenakshi\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1Mm","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6842","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/495"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=6842"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6842\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=6842"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=6842"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=6842"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}