Advertisement
Javi

mqtt notes

Nov 3rd, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. # Notes for mqtt server
  2.  
  3. * Generating keypair
  4.  
  5. ```
  6. openssl req -new -newkey rsa:2048 -nodes -keyout iotprivate.key -out iotserver.csr
  7. openssl x509 -req -days 365 -in iotserver.csr -signkey iotprivate.key -out iotcertificate.crt
  8. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement