0208.html 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install iRedMail Email Server on Debian/Ubuntu</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="How To,Tutorial,i12bretro,Linux,Debian,Ubuntu,Self-Hosted,Web Based,E-Mail,Email,E-Mail Server,SMTP">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install iRedMail Email Server on Debian/Ubuntu">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Install iRedMail Email Server on Debian/Ubuntu</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <ol>
  25. <li>Log into the Debian/Ubuntu device</li>
  26. <li>Run the following commands in terminal to install and configure iRedMail<br />
  27. <code class="codeBlock"># set/verify the hostname<br />
  28. sudo hostnamectl set-hostname nettools.i12bretro.local<br />
  29. # update software repositories<br />
  30. sudo apt update<br />
  31. # install available software updates<br />
  32. sudo apt upgrade<br />
  33. # install prerequisites<br />
  34. sudo apt install gzip<br />
  35. # download iRedMail install scripts<br />
  36. wget&nbsp;https://github.com/iredmail/iRedMail/archive/1.3.2.tar.gz<br />
  37. # extract the archive<br />
  38. sudo tar zxf ./1.3.2.tar.gz<br />
  39. cd ./iRedMail*<br />
  40. # make the install script executable<br />
  41. sudo chmod +x ./iRedMail.sh<br />
  42. # run the install script<br />
  43. sudo ./iRedMail.sh</code></li>
  44. <li>At the Welcome to iRedMail screen, select Yes &gt; Press Enter</li>
  45. <li>Enter the default&nbsp;/var/vmail/ for the location to store mailboxes &gt; Press Enter</li>
  46. <li>On the Backend selection screen, arrow down to MySQL &gt; Press spacebar to select it &gt; Press Enter</li>
  47. <li>Enter the&nbsp;email domain name to be used &gt; Press Enter</li>
  48. <li>Enter a password for the mail administrator &gt; Press Enter</li>
  49. <li>Arrow down and select the optional components to install by press spacebar &gt; Pres Enter</li>
  50. <li>Review the installation summary &gt; Type Y to accept &gt; Press Enter</li>
  51. <li>Wait for the installation to complete</li>
  52. <li>Once completed, the optional software will be available at the following URLs
  53. <p>Roundcube webmail: https://DNSorIP/mail/<br />
  54. SOGo Groupware: https://DNSorIP/SOGo<br />
  55. Web admin panel (iRedAdmin): https://DNSorIP/iredadmin/</p>
  56. </li>
  57. </ol>
  58. <p>Source:&nbsp;<a href="https://docs.iredmail.org/install.iredmail.on.debian.ubuntu.html" target="_blank">https://docs.iredmail.org/install.iredmail.on.debian.ubuntu.html</a></p>
  59. </div>
  60. </div>
  61. </body>
  62. </html>