-
Notifications
You must be signed in to change notification settings - Fork 639
How to reset Ant Media Server admin password?
Murat Ugur Eminoglu edited this page May 17, 2022
·
17 revisions
Attention: We have migrated our documentation to our new platform, Ant Media Resources. Please follow this link for the latest and up-to-date documentation.
NOTE: This document is added in FAQ section.
cd /usr/local/antmedia
sudo rm server.db
sudo service antmedia restart
mongo
use serverdb;
db.User.find()
Output:
{ "_id" : ObjectId("5ea486690f09e71c2462385a"), "className" : "io.antmedia.rest.model.User", "email" : "[email protected]", "password" : "1234567", "userType" : "ADMIN" }
We updated our password as test123
db.User.updateOne( { email:"[email protected]" }, { $set: { "password" : "test123" }})
If you delete the user, you will create a new user next time you login on the dasboard.
db.User.deleteOne( { "email": "[email protected]" } )
If you are still having issues, please let us know that. [email protected]
- Introduction
- Quick Start
- Installation
- Publishing Live Streams
- Playing Live Streams
- Conference Call
- Peer to Peer Call
- Adaptive Bitrate(Multi-Bitrate) Streaming
- Data Channel
- Video on Demand Streaming
- Simulcasting to Social Media Channels
- Clustering & Scaling
- Monitor Ant Media Servers with Apache Kafka and Grafana
- WebRTC SDKs
- Security
- Integration with your Project
- Advanced
- WebRTC Load Testing
- TURN Servers
- AWS Wavelength Deployment
- Multi-Tenancy Support
- Monitor Ant Media Server with Datadog
- Clustering in Alibaba
- Playlist
- Kubernetes
- Time based One Time Password
- Kubernetes Autoscaling
- Kubernetes Ingress
- How to Install Ant Media Server on EKS
- Release Tests
- Spaceport Volumetric Video
- WebRTC Viewers Info
- Webhook Authentication for Publishing Streams
- Recording Streams
- How to Update Ant Media Server with Cloudformation
- How to Install Ant Media Server on GKE
- Ant Media Server on Docker Swarm
- Developer Quick Start
- Recording HLS, MP4 and how to recover
- Re-streaming update
- Git Branching
- UML Diagrams