mariaDB.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <!--
  3. Autor : Herley Ramos
  4. Data : 22/12/2017
  5. Projeto: Dicas
  6. Meta : Organizar as dicas do LAMP e Node.js (agora neste html, antes em OOo)
  7. -->
  8. <?php
  9. include("cabecalho.php");
  10. ?>
  11. <section>
  12. <h1>MariaDB no Linux Debian <span style="font-family: 'Noto Sans', sans-serif;">9.3</span> Stretch</h1>
  13. <h1>e no Debian <span style="font-family: 'Noto Sans', sans-serif;">10</span> Buster</h1>
  14. <!--MariaDB-->
  15. <h2>Instalando MariaDB em vez do MySQL</h2>
  16. <h3>Só precisa descomentar os repositórios oficiais principais</h3>
  17. <h4>Código</h4>
  18. <div class="box sombra">
  19. $ sudo apt install mysql-server<br/>
  20. </div>
  21. <h3>Se não funcionar verifique se os seus Repositorios tem no final 'non-free'</h3>
  22. <h4>Exemplo</h4>
  23. <div class="box sombra">
  24. # Oficial de stretch<br/>
  25. deb http://ftp.us.debian.org/debian/ stretch main contrib non-free<br/>
  26. <br/>
  27. # Atualizações de seguridade<br/>
  28. deb http://security.debian.org/debian-security stretch/updates main contrib non-free<br/>
  29. </div>
  30. </section>
  31. <?php
  32. for($i=0; $i<23; $i++) {echo'<br/>';}
  33. include("rodape.php");
  34. ?>