Advertisement
Guest User

Untitled

a guest
Apr 6th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. https://www.mulesoft.com/tcat/tomcat-ssl
  2.  
  3. MEJORES ENLACES:
  4. https://www.sslshopper.com/article-how-to-create-a-self-signed-certificate-using-java-keytool.html?jn844ab150=2
  5. http://docs.adaptivecomputing.com/viewpoint/7-2-6/cloud/Content/topics/1-setup/securityConfiguration/modifyingWebxmlEnableHTTPS.htm
  6. https://www.mkyong.com/tomcat/how-to-configure-tomcat-to-support-ssl-or-https/
  7. http://www.techstacks.com/howto/disable-http-methods-in-tomcat.html
  8.  
  9. PARTE III:
  10. Cambiar la contraseña de root:
  11. mysql -u root -p
  12. escribir: root
  13. use mysql;
  14. update user set password=PASSWORD("NEWPASSWORD") where User="root";
  15. flush privileges;
  16. quit;
  17.  
  18. Limitar accesos remotos:
  19. crear otro usuario y cambiar los privilegios
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement