Lets understand what is MongoDB URI?
MongoDB URI is a connection string which usually uses for connecting MongoDB server and client. for example
01 | mongodb+srv://brigitte:bardot@xyz-1234.srv.net/admin |
01 | mongodb+srv |
this is call srv uri string. SRV string start with mongodb+srv prefix which tell mongodb server uri string.
01 | brigitte:bardot |
here brigitte is mongodb server credential user name. bardot is password
01 | xyz-1234.srv.net |
xyz-1234.srv.net is host name
01 | admin |
admin is authenticate database. that crential is match into this database.