TODO
- Propose a new project name
MongoDB
Admin User: hamid
Password: 1q2w3e4r
Address: jm.junhao.ca:27017
MongoDB add Admin user
use admin
db.createUser(
{
user: "hamid",
pwd: "1q2w3e4r",
roles: [ { role: "root", db: "admin" } ]
}
)
# mongod.conf
network interfaces
net:
port: 27017
bindIpAll: true
security:
authorization: enabled
Websockify SSL option
sudo ./websockify 192.168.2.88:8888 localhost:5988 --cert /etc/letsencrypt/live/junhao.ca/cert.pem --key /etc/letsencrypt/live/junhao.ca/privkey.pem
0 Comments