-
Notifications
You must be signed in to change notification settings - Fork 639
Frequently Asked Questions
- Please use an Elastic IP address.
- Add A record in your Elastic IP address.
- After that please check DNS records in here -> https://dnschecker.org/
- If everything is fine, follow this tutorial -> https://github.com/ant-media/Ant-Media-Server/wiki/SSL-Setup
JavaScript SDK is available in the Ant Media Server. It can be accessed via http://SERVER_ADDR:5080/LiveApp/js/webrtc_adaptor.js
. Its file location is /usr/local/antmedia/webapps/LiveApp/js/webrtc_adaptor.js
. Its source code is also available in here
YES. Utilizing Docker images is a very common way of deploying Ant Media Server. Check the Installation
- Stop the server
service antmedia stop
. - Delete the
server.db
file under/usr/local/antmedia/
- Start the server `service antmedia start``
If you're using mongodb
as database, your password will be in serverdb
database and in User
collection.
-
Connect to your
mongodb
server withmongo
client. -
Type
use serverdb;
-
Type
db.User.find()
and it shows you the output like below.{ "_id" : ObjectId("5ea486690f09e71c2462385a"), "className" : "io.antmedia.rest.model.User", "email" : "[email protected]", "password" : "1234567", "userType" : "ADMIN" }
-
You can update the password with a command something like below. Change the parameters below according to the your case.
db.User.updateOne( { email:"[email protected]" }, { $set: { "password" : "test123" }})
-
Alternatively, you can delete the user with a command something like below. Change the parameters below according to the your case.
db.User.deleteOne( { "email": "[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