{"id":542,"date":"2018-05-24T13:46:21","date_gmt":"2018-05-24T13:46:21","guid":{"rendered":"https:\/\/www.dewlance.com\/kb\/?p=542"},"modified":"2022-08-16T10:15:45","modified_gmt":"2022-08-16T10:15:45","slug":"how-to-install-webmin-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04","title":{"rendered":"How To Install Webmin on Ubuntu 18.04"},"content":{"rendered":"<p>Webmin is basically a web-based control panel which helps you in managing server of any Linux machine. It has a modern web-based interface which makes your work easier.<\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-545\" src=\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png\" alt=\"\" width=\"575\" height=\"374\" srcset=\"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png 575w, https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance-200x130.png 200w, https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance-300x195.png 300w\" sizes=\"auto, (max-width: 575px) 100vw, 575px\" \/><\/p>\n<p>&nbsp;<\/p>\n<h4>Prerequisites<\/h4>\n<p>For Installing Webmin on Ubuntu 18.04 we will require &#8211;<\/p>\n<ul>\n<li>One Ubuntu 18.04 server ND sudo non-root user and a firewall.<\/li>\n<li>Apache should be installed.<\/li>\n<li>Also an FQDN with DNS A record pointing to the Ip address of your Ubuntu server.<\/li>\n<li>Certbot should also be installed.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h4>Steps to Install Webmin<\/h4>\n<h5>Step 1:<\/h5>\n<p>First, add Webmin Repository as it will help us in easily installing and updating Webmin by the package manager. You can do it by simply adding the Repository to \/etc\/apt\/sources.list file.<\/p>\n<p>&nbsp;<\/p>\n<p>Now Open the file in your editor:<\/p>\n<pre>sudo nano \/etc\/apt\/sources.list<\/pre>\n<p>&nbsp;<\/p>\n<p>Now add this line at the bottom of the file to add the new repository:<br \/>\n<strong><em>\/etc\/apt\/sources.list<\/em><\/strong><\/p>\n<pre>deb http:\/\/download.webmin.com\/download\/repository sarge contrib<\/pre>\n<p>Now you have to just Save the file and exit the editor.<\/p>\n<p>&nbsp;<\/p>\n<p>Next, for letting our system to trust the new Repository, we need to add the Webmin PGP key.<\/p>\n<pre>wget http:\/\/www.webmin.com\/jcameron-key.asc\r\nsudo apt-key add jcameron-key.asc<\/pre>\n<p>&nbsp;<\/p>\n<p>Next, to include the Webmin Repository, update the list of packages.<\/p>\n<pre>sudo apt update<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Now install Webmin:<\/strong><\/p>\n<pre>sudo apt install webmin<\/pre>\n<p>&nbsp;<\/p>\n<p>After successfully installing it, You will see the following output,<\/p>\n<pre>Output\r\nWebmin install complete. You can now login to \r\nhttps:\/\/your_server_ip:10000 as root with your \r\nroot password, or as any user who can use `sudo`.<\/pre>\n<p>&nbsp;<\/p>\n<p>Now, let&#8217;s secure access to Webmin by putting it behind the Apache web server and adding a valid TLS\/SSL certificate.<\/p>\n<p>Now, to secure access to Webmin we need to put Apache web server and add an SSL certificate.<\/p>\n<p>&nbsp;<\/p>\n<h5>Step 2:<\/h5>\n<p>To access Webmin, you need to specify port 10000 and make sure that the port is open on your firewall.<\/p>\n<p>&nbsp;<\/p>\n<p>First, you need to create a new Apache virtual host file in the Apache&#8217;s configuration directory:<\/p>\n<pre>sudo nano \/etc\/apache2\/sites-available\/your_domain.conf<\/pre>\n<p>&nbsp;<\/p>\n<p>Now add the following line but replace the email address and domain of your own:<\/p>\n<p><strong>\/etc\/apache2\/sites-available\/your_domain.conf<\/strong><\/p>\n<pre>        ServerAdmin your_email\r\n        ServerName your_domain\r\n        ProxyPass \/ http:\/\/localhost:10000\/\r\n        ProxyPassReverse \/ http:\/\/localhost:10000\/\r\n\r\n<\/pre>\n<p>Now Save the file and exit the editor.<\/p>\n<p>&nbsp;<\/p>\n<p>Next, we need to aware Webmin to stop using SSL as Apache will provide SSL afterward:<\/p>\n<p>Open the file \/etc\/webmin\/miniserv.conf in your editor:<\/p>\n<pre>sudo nano \/etc\/webmin\/miniserv.conf<\/pre>\n<p>&nbsp;<\/p>\n<p>Find the following line:<br \/>\n\/etc\/webmin\/miniserv.conf<\/p>\n<pre>ssl=1<\/pre>\n<p>Change <strong>1<\/strong> to <strong>0<\/strong> and it will stop Webmin from using SSL:<\/p>\n<p>&nbsp;<\/p>\n<p>Now, we need to add our domain in the list of allowed domain:<\/p>\n<p>Open the file <strong>\/etc\/webmin\/config<\/strong> in your editor:<\/p>\n<pre>sudo nano \/etc\/webmin\/config<\/pre>\n<p>&nbsp;<\/p>\n<p>Now add the following line at the bottom replacing your-domain with original domain:<\/p>\n<p><strong>\/etc\/webmin\/config<\/strong><\/p>\n<pre>referers=your_domain<\/pre>\n<p>Now Save the file and exit the editor.<\/p>\n<p>&nbsp;<\/p>\n<p>Next, you need to restart Webmin:<\/p>\n<pre>sudo systemctl restart webmin<\/pre>\n<p>&nbsp;<\/p>\n<p>Then enable Apache&#8217;s proxy_http module:<\/p>\n<pre>sudo a2enmod proxy_http<\/pre>\n<p>&nbsp;<\/p>\n<p>After enabling you&#8217;ll see the following output:<\/p>\n<pre>Output\r\nConsidering dependency proxy for proxy_http:\r\nEnabling module proxy.\r\nEnabling module proxy_http.<\/pre>\n<p>&nbsp;<\/p>\n<p>To activate the new configuration, you need to run:<\/p>\n<pre>systemctl restart apache2<\/pre>\n<p>&nbsp;<\/p>\n<p>The output stells to restart Apache, but at first, you need to activate the virtual host which you created:<\/p>\n<pre>sudo a2ensite your_domain<\/pre>\n<p>&nbsp;<\/p>\n<p>Now you&#8217;ll see the following output informing that your site is enabled:<\/p>\n<pre>Output\r\nEnabling site your_domain.\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>To activate the new configuration, you need to run:<\/p>\n<pre>systemctl reload apache2<\/pre>\n<p>&nbsp;<\/p>\n<p>Now, it&#8217;s time to restart Apache completely:<\/p>\n<pre>sudo systemctl restart apache2<\/pre>\n<p>Visit http:\/\/domain-here in your browser, and you will see the Webmin login page in front of you.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Note:<\/strong> You should not log in to Webmin, as we haven&#8217;t enabled SSL.<\/p>\n<p>&nbsp;<\/p>\n<p>Now you need to configure a certificate so that your connection is encrypted while using Webmin. In order to do this, use Let&#8217;s Encrypt.<\/p>\n<p>Next, Tell Certbot to generate a TLS\/SSL certificate for your domain and configure Apache to redirect traffic to the secured site:<\/p>\n<pre>sudo certbot --apache --email your_email -d your_domain --agree-tos --redirect --noninteractive<\/pre>\n<p>&nbsp;<\/p>\n<p>You&#8217;ll see the following output:<\/p>\n<pre>Output\r\nSaving debug log to \/var\/log\/letsencrypt\/letsencrypt.log\r\nPlugins selected: Authenticator apache, Installer apache\r\nObtaining a new certificate\r\nPerforming the following challenges:\r\nhttp-01 challenge for your_domain\r\nEnabled Apache rewrite module\r\nWaiting for verification...\r\nCleaning up challenges\r\nCreated an SSL vhost at \/etc\/apache2\/sites-available\/your_domain-le-ssl.conf\r\nEnabled Apache socache_shmcb module\r\nEnabled Apache ssl module\r\nDeploying Certificate to VirtualHost \/etc\/apache2\/sites-available\/your_domain-le-ssl.conf\r\nEnabling available site: \/etc\/apache2\/sites-available\/your_domain-le-ssl.conf\r\nEnabled Apache rewrite module\r\nRedirecting vhost in \/etc\/apache2\/sites-enabled\/your_domain.conf to ssl vhost in \/etc\/apache2\/sites-available\/your_domain-le-ssl.conf\r\n<\/pre>\n<p>Now you have successfully enabled https:\/\/domain-here and setup Webmin.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Webmin is basically a web-based control panel which helps you in managing server of any Linux machine. It has a modern web-based interface which makes your work easier. &nbsp; &nbsp; Prerequisites For Installing Webmin on Ubuntu 18.04 we will require &#8211; One Ubuntu 18.04 server ND sudo non-root user and a firewall. Apache should be [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[706],"tags":[146,149,147,148],"class_list":["post-542","post","type-post","status-publish","format-standard","hentry","category-vps","tag-how-to-install-webmin","tag-how-to-install-webmin-latest-on-ubuntu-18-04-step-by-step","tag-install-webmin-on-ubuntu-18-04","tag-ubuntu-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Install Webmin on Ubuntu 18.04 - Web Hosting Blog - Dewlance<\/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.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Webmin on Ubuntu 18.04 - Web Hosting Blog - Dewlance\" \/>\n<meta property=\"og:description\" content=\"Webmin is basically a web-based control panel which helps you in managing server of any Linux machine. It has a modern web-based interface which makes your work easier. &nbsp; &nbsp; Prerequisites For Installing Webmin on Ubuntu 18.04 we will require &#8211; One Ubuntu 18.04 server ND sudo non-root user and a firewall. Apache should be [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting Blog - Dewlance\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dewlance.hosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-24T13:46:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-16T10:15:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png\" \/>\n<meta name=\"author\" content=\"K.S\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dewlance\" \/>\n<meta name=\"twitter:site\" content=\"@dewlance\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"K.S\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04\"},\"author\":{\"name\":\"K.S\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#\/schema\/person\/0fe2f240cf5589599b50b9385ee53694\"},\"headline\":\"How To Install Webmin on Ubuntu 18.04\",\"datePublished\":\"2018-05-24T13:46:21+00:00\",\"dateModified\":\"2022-08-16T10:15:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04\"},\"wordCount\":598,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png\",\"keywords\":[\"how to install webmin\",\"how to install webmin latest on ubuntu 18.04 step by step\",\"install webmin on ubuntu 18.04\",\"ubuntu tutorial\"],\"articleSection\":[\"VPS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04\",\"url\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04\",\"name\":\"How To Install Webmin on Ubuntu 18.04 - Web Hosting Blog - Dewlance\",\"isPartOf\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png\",\"datePublished\":\"2018-05-24T13:46:21+00:00\",\"dateModified\":\"2022-08-16T10:15:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#primaryimage\",\"url\":\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png\",\"contentUrl\":\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.dewlance.com\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install Webmin on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#website\",\"url\":\"https:\/\/www.dewlance.com\/blog\/\",\"name\":\"Web Hosting Blog - Dewlance\",\"description\":\"Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dewlance.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#organization\",\"name\":\"Dewlance\",\"url\":\"https:\/\/www.dewlance.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2022\/08\/logo.png\",\"contentUrl\":\"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2022\/08\/logo.png\",\"width\":274,\"height\":89,\"caption\":\"Dewlance\"},\"image\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/dewlance.hosting\/\",\"https:\/\/x.com\/dewlance\",\"https:\/\/www.youtube.com\/user\/dewlances\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#\/schema\/person\/0fe2f240cf5589599b50b9385ee53694\",\"name\":\"K.S\",\"url\":\"https:\/\/www.dewlance.com\/blog\/author\/dewlancevpsxen\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Install Webmin on Ubuntu 18.04 - Web Hosting Blog - Dewlance","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.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04","og_locale":"en_US","og_type":"article","og_title":"How To Install Webmin on Ubuntu 18.04 - Web Hosting Blog - Dewlance","og_description":"Webmin is basically a web-based control panel which helps you in managing server of any Linux machine. It has a modern web-based interface which makes your work easier. &nbsp; &nbsp; Prerequisites For Installing Webmin on Ubuntu 18.04 we will require &#8211; One Ubuntu 18.04 server ND sudo non-root user and a firewall. Apache should be [&hellip;]","og_url":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04","og_site_name":"Web Hosting Blog - Dewlance","article_publisher":"https:\/\/www.facebook.com\/dewlance.hosting\/","article_published_time":"2018-05-24T13:46:21+00:00","article_modified_time":"2022-08-16T10:15:45+00:00","og_image":[{"url":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png","type":"","width":"","height":""}],"author":"K.S","twitter_card":"summary_large_image","twitter_creator":"@dewlance","twitter_site":"@dewlance","twitter_misc":{"Written by":"K.S","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#article","isPartOf":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04"},"author":{"name":"K.S","@id":"https:\/\/www.dewlance.com\/blog\/#\/schema\/person\/0fe2f240cf5589599b50b9385ee53694"},"headline":"How To Install Webmin on Ubuntu 18.04","datePublished":"2018-05-24T13:46:21+00:00","dateModified":"2022-08-16T10:15:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04"},"wordCount":598,"commentCount":0,"publisher":{"@id":"https:\/\/www.dewlance.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#primaryimage"},"thumbnailUrl":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png","keywords":["how to install webmin","how to install webmin latest on ubuntu 18.04 step by step","install webmin on ubuntu 18.04","ubuntu tutorial"],"articleSection":["VPS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04","url":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04","name":"How To Install Webmin on Ubuntu 18.04 - Web Hosting Blog - Dewlance","isPartOf":{"@id":"https:\/\/www.dewlance.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#primaryimage"},"image":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#primaryimage"},"thumbnailUrl":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png","datePublished":"2018-05-24T13:46:21+00:00","dateModified":"2022-08-16T10:15:45+00:00","breadcrumb":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#primaryimage","url":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png","contentUrl":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/how-to-install-webmin-on-ubuntu-18.04-dewlance.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dewlance.com\/blog\/how-to-install-webmin-on-ubuntu-18-04#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dewlance.com\/blog"},{"@type":"ListItem","position":2,"name":"How To Install Webmin on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/www.dewlance.com\/blog\/#website","url":"https:\/\/www.dewlance.com\/blog\/","name":"Web Hosting Blog - Dewlance","description":"Tutorials","publisher":{"@id":"https:\/\/www.dewlance.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dewlance.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.dewlance.com\/blog\/#organization","name":"Dewlance","url":"https:\/\/www.dewlance.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dewlance.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2022\/08\/logo.png","contentUrl":"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2022\/08\/logo.png","width":274,"height":89,"caption":"Dewlance"},"image":{"@id":"https:\/\/www.dewlance.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dewlance.hosting\/","https:\/\/x.com\/dewlance","https:\/\/www.youtube.com\/user\/dewlances\/"]},{"@type":"Person","@id":"https:\/\/www.dewlance.com\/blog\/#\/schema\/person\/0fe2f240cf5589599b50b9385ee53694","name":"K.S","url":"https:\/\/www.dewlance.com\/blog\/author\/dewlancevpsxen"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/posts\/542","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/comments?post=542"}],"version-history":[{"count":4,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/posts\/542\/revisions"}],"predecessor-version":[{"id":544,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/posts\/542\/revisions\/544"}],"wp:attachment":[{"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/media?parent=542"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/categories?post=542"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/tags?post=542"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}