{"id":1416,"date":"2026-01-29T04:29:13","date_gmt":"2026-01-29T04:29:13","guid":{"rendered":"https:\/\/googiehost.com\/blog\/hostingloginguide\/?p=1416"},"modified":"2026-01-29T04:29:13","modified_gmt":"2026-01-29T04:29:13","slug":"hostodo-login","status":"publish","type":"loginguide","link":"https:\/\/googiehost.com\/blog\/hostingloginguide\/hostodo-login\/","title":{"rendered":"Hostodo Login"},"content":{"rendered":"\n<p>Hostodo isn\u2019t your average hosting provider. It is a place for you to feel safe and secured with all your web hosting dreams fulfilled while you\u2019re here with us on your hosting journey. <\/p>\n\n\n\n<p>With features and options provided to you from the start till the end, Hostodo has always aimed for tougher competition in the hosting market. Here is a guide for beginners to get acquainted with <strong>Hostodo login:<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-do-i-reset-my-root-password\">How Do I Reset My Root Password?<\/h2>\n\n\n\n<p><strong><em>To reset your root password, follow the following:<\/em><\/strong><\/p>\n\n\n\n<p><strong>Step 1:<\/strong> <em><strong>Enter the VPS management panel. <\/strong><\/em>You can use the given link to do so:  <strong>https:\/\/vpscp.hostodo.com\/login.php<\/strong><\/p>\n\n\n\n<p><strong>Step 2:<\/strong> Use the credentials of your <em><strong>VPS given to you via email<\/strong><\/em>.<\/p>\n\n\n\n<p><strong>Step 3:<\/strong> From the many options, select the VPS you want to make changes on.<\/p>\n\n\n\n<p><strong>Step 4:<\/strong> Then select Root\/Admin Password.<\/p>\n\n\n\n<p><strong>Step 5:<\/strong>&nbsp; Press the <strong><em>Change button<\/em>.<\/strong><\/p>\n\n\n\n<p><em><strong>Read:- <a class=\"rank-math-link\" href=\"https:\/\/googiehost.com\/blog\/hostingloginguide\/hawkhost-login\/\">Hawkhost Login Client Area<\/a>, Reset cPanel, Affiliate<\/strong><\/em><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/googiehost.com\/blog\/wp-content\/uploads\/hlg-legacy\/2021\/03\/image3-10.png\" alt=\"Hostodo Login\" class=\"wp-image-1417\" title=\"\"><\/figure>\n\n\n\n<div style=\"height:35px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 6:<\/strong> After the confirmation for your <em><strong>password change text, your new password<\/strong><\/em> will be generated and shown to you.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-reset-your-mysql-admin-password-in-hostodo-login\">How To Reset Your MySQL Admin Password in Hostodo login?<\/h2>\n\n\n\n<p>To reset your MySQL Admin Password in <em><strong>Hostodo login, follow the following steps:<\/strong><\/em><\/p>\n\n\n\n<p><strong>Step 1<\/strong>: Start by logging in as a <strong><em>root user.<\/em><\/strong><\/p>\n\n\n\n<p><strong>Step 2:<\/strong> Use the following code to stop <em><strong>MySQL: \/etc\/init.d\/mysql stop. <\/strong><\/em>You can also use this as an alternative: kill all MySQL<\/p>\n\n\n\n<p><strong>Step 3:<\/strong> The next step is to create a MySQL password sql script. For that use the following: <em><strong>vim \/root\/mysql.reset.sql<\/strong><\/em><\/p>\n\n\n\n<p><strong>Step 4:<\/strong> Add the following code to the process:<\/p>\n\n\n\n<p><strong>UPDATE<\/strong> mysql.user <strong>SET Password=<\/strong>PASSWORD<strong>(&#8216;YOUR-NEW-MYSQL-PASSWORD)<\/strong> WHERE User=&#8217;<strong>root<\/strong>&#8216;;<\/p>\n\n\n\n<p><strong><em>FLUSH PRIVILEGES;<\/em><\/strong><\/p>\n\n\n\n<p><strong>Step 5:<\/strong> After that is done, Save and <em><strong>close the file.<\/strong><\/em><\/p>\n\n\n\n<p><strong>Step 6:<\/strong> For the new MySQL root password, set the following: <em><strong>mysqld_safe &#8211;init-file=\/root\/mysql.reset.sql &amp;<\/strong><\/em><\/p>\n\n\n\n<p><strong>Step 7:<\/strong> The output of the code should be:<\/p>\n\n\n\n<p><em><strong>nohup: ignoring input and redirecting stderr to stdout<\/strong><\/em><\/p>\n\n\n\n<p>Starting mysqld daemon with databases from <strong>\/var\/lib\/MySQL<\/strong><\/p>\n\n\n\n<p><strong><em>mysqld_safe[20970]: Started<\/em><\/strong><\/p>\n\n\n\n<p><strong>Step 8:<\/strong> Finally, stop and restart MySQL with the following:<\/p>\n\n\n\n<p><strong>killall mysqld<\/strong><\/p>\n\n\n\n<p><strong>\/etc\/init.d\/mysql <\/strong>start<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-find-user-memory-usage-in-linux\">How To Find User Memory Usage in Linux?<\/h2>\n\n\n\n<p><em style=\"\"><b>To find out the user memory usage in <\/b><\/em><strong><em>Linux, follow the short tutorial:<\/em><\/strong><\/p>\n\n\n\n<p><strong>Step 1:<\/strong> To know what program or device is using the <em><strong>most memory, use the given:<\/strong><\/em><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>for USER in $(ps haux | awk &#8216;{print $1}&#8217; | sort -u); do ps haux | awk -v user=$USER &#8216;$1 ~ user { sum += $4} END { print user, sum; }&#8217; ; done<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Step 2:<\/strong> To know what program or device is using the most memory in <em><strong>percentage, follow the given:<\/strong><\/em><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>TOTAL=$(free | awk &#8216;\/Mem:\/ { print $2 }&#8217;); for USER in $(ps haux | awk &#8216;{print $1}&#8217; | sort -u); do ps hux -U $USER | awk -v user=$USER -v total=$TOTAL &#8216;{ sum += $6 } END { printf &#8220;%s %.2f\\n&#8221;, user, sum \/ total * 100; }&#8217;; done<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Step 3<\/strong>: Install and use smem, if your device\/system <strong><em>supports the function:<\/em><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>smem -uUser Count Swap&nbsp; &nbsp; &nbsp; USS&nbsp; PSS&nbsp; RSSgdm &nbsp; &nbsp; &nbsp; 1&nbsp; &nbsp; &nbsp; &nbsp; 0&nbsp; 308&nbsp; 323&nbsp; &nbsp; &nbsp; 820nobody &nbsp; 1&nbsp; &nbsp; 0&nbsp; &nbsp; &nbsp; 912&nbsp; 932 2240root&nbsp; &nbsp; 76&nbsp; &nbsp; 0 &nbsp; 969016&nbsp; 1010829&nbsp; 1347768<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"has-text-align-center\"><strong>or<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>smem -u -t -kUser Count Swap&nbsp; &nbsp; &nbsp; USS&nbsp; PSS&nbsp; RSSgdm&nbsp; &nbsp; &nbsp; 1&nbsp; &nbsp; 0 &nbsp; 308.0K &nbsp; 323.0K &nbsp; 820.0Knobody &nbsp; 1&nbsp; &nbsp; 0 &nbsp; 892.0K &nbsp; 912.0K 2.2Mroot&nbsp; &nbsp; 76&nbsp; &nbsp; 0 &nbsp; 937.6M &nbsp; 978.5M 1.3Gameskaas 46&nbsp; &nbsp; 0 &nbsp; &nbsp; 1.2G 1.2G 1.5G<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-hostodo-login-affiliates-program\">How to Hostodo Login Affiliates Program?<\/h2>\n\n\n\n<p>To log in to Hostodo Affiliates, use this link <strong>https:\/\/hostodo.com\/portal\/affiliates.php<\/strong> to open the login page. Input your login username and password and hit the <strong>Login button.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" src=\"https:\/\/googiehost.com\/blog\/wp-content\/uploads\/hlg-legacy\/2021\/03\/image1-8.png\" alt=\"Hostodo Login\" class=\"wp-image-1418\" title=\"\"><\/figure>\n\n\n\n<div style=\"height:35px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-the-site-pro-website-builder-in-hostodo\">What is the Site.pro Website Builder in Hostodo?<\/h2>\n\n\n\n<p>The Site.pro is a feature that Hostodo holds proudly for website building. It is the easiest way to get started building your website, with unconditional help from the <em><strong>Hostodo login Support team. <\/strong><\/em><\/p>\n\n\n\n<p>With a very simple and free functionality, it is quite ideal for development and requires no special knowledge or big-time investments.<\/p>\n\n\n\n<p>To get started, select a template, customize your designs and texts and simply publish after you\u2019re done.<\/p>\n\n\n\n<p>There are thousands of different template designs to choose from, ranging from simple to grand features.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-get-started-with-cpanel-in-hostodo\">How To Get Started With cPanel In Hostodo?<\/h2>\n\n\n\n<p><em>To get started with the cPanel in Hostodo, follow the following tutorial:<\/em><\/p>\n\n\n\n<p>&nbsp;<strong>Step 1:<\/strong> Purchase a plan and receive your <strong><em>login details and DNS information.<\/em><\/strong><\/p>\n\n\n\n<p><strong>Step 2: <\/strong>Register <strong><em>Your domain.<\/em><\/strong><\/p>\n\n\n\n<p><strong>Step 3:<\/strong> Then Point the Domain DNS to the <strong><em>Hostodo server i.e. change nameservers.<\/em><\/strong><\/p>\n\n\n\n<p><strong>Step 4: <\/strong>Log in to the cPanel and check out the various tools and changes you can use like MySQL, email accounts, Files etc. <strong><em>for detailed information use this link <\/em><\/strong>https:\/\/hostodo.com\/portal\/knowledgebase.php<\/p>\n\n\n\n<p><strong>Step 5:<\/strong> Upload files to the website you created with uploading software like FTP software, Microsoft Frontpage and <strong>cPanel File Manager.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-register-in-hostodo\">How To Register in Hostodo?<\/h2>\n\n\n\n<p>To register in Hostodo, follow the following steps:<\/p>\n\n\n\n<p><strong>Step 1:<\/strong> Go to your browser address bar and type the given: <strong>https:\/\/hostodo.com\/portal\/register.php<\/strong><\/p>\n\n\n\n<p><strong>Step 2:<\/strong> It will direct you to a portal where a signup page pops up. Complete all the sign-in requirements.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" src=\"https:\/\/googiehost.com\/blog\/wp-content\/uploads\/hlg-legacy\/2021\/03\/image2-8.png\" alt=\"Hostodo Login\" class=\"wp-image-1419\" title=\"\"><\/figure>\n\n\n\n<div style=\"height:35px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 3:<\/strong> After you are done, tick on I am not robot security check and click on Register.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" src=\"https:\/\/googiehost.com\/blog\/wp-content\/uploads\/hlg-legacy\/2021\/03\/image4-9.png\" alt=\"Hostodo Login\" class=\"wp-image-1420\" title=\"\"><\/figure>\n\n\n\n<div style=\"height:35px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>Ideal for your WordPress-based company site, Hostodo login is one of the most renowned hostings in the world. <\/p>\n\n\n\n<p>From beginners to developers, anybody can use this site easily and fall in love with its extensive features. It brings you a mixture of great professionalism and availability.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hostodo isn\u2019t your average hosting provider. It is a place for you to feel safe and secured with all your&#8230;<\/p>\n","protected":false},"featured_media":1000108545,"template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"loginguide_category":[10454],"class_list":["post-1416","loginguide","type-loginguide","status-publish","has-post-thumbnail","hentry","loginguide_category-login"],"acf":[],"_links":{"self":[{"href":"https:\/\/googiehost.com\/blog\/wp-json\/wp\/v2\/loginguide\/1416","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/googiehost.com\/blog\/wp-json\/wp\/v2\/loginguide"}],"about":[{"href":"https:\/\/googiehost.com\/blog\/wp-json\/wp\/v2\/types\/loginguide"}],"version-history":[{"count":0,"href":"https:\/\/googiehost.com\/blog\/wp-json\/wp\/v2\/loginguide\/1416\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/googiehost.com\/blog\/wp-json\/wp\/v2\/media\/1000108545"}],"wp:attachment":[{"href":"https:\/\/googiehost.com\/blog\/wp-json\/wp\/v2\/media?parent=1416"}],"wp:term":[{"taxonomy":"loginguide_category","embeddable":true,"href":"https:\/\/googiehost.com\/blog\/wp-json\/wp\/v2\/loginguide_category?post=1416"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}