Deployment Guide
Table Of Contents
- Dell Wyse Management Suite Version 1.3 Deployment Guide
- Introduction
- Hardware requirements
- Wyse Management Suite deployment architecture
- Deployment details
- Deployment on a single server to support 50,000 thin client devices
- Deployment on a single server to support 120,000 thin client devices
- Deployment details to support Teradici devicesDeployment on a single server to support 5000 Teradici devicesDeployment to support more than 5000 Teradici devices
- Wyse Management Suite on a separate database server
- Custom port configurations
- Maintenance

Maintenance
This chapter describes how to take a backup of the database.
Database backup
Stop Tomcat Service before taking a backup of the database. Tomcat Service is identied as “Dell WMS: Tomcat Service” and must be
stopped from Local Services.
To dump the contents of the MongoDB, run the following command:
mongodump --host <mongodb_host> -u stratus –p <db_password> --authenticationDatabase admin --db stratus --out ".
\wmsmongodump"
To dump the contents of the MarioDB, run the following command:
mysqldump --routine –h<mariadb_host> -ustratus –p<db_password> stratus > ".\wmsdump.sql"
Database restore
Stop Tomcat Service before restoring the database. Tomcat Service is identied as “Dell WMS: Tomcat Service” and can be stopped from
Local Services.
You must run the following command from the wmsmongodump directory – parent directory of stratus database, to restore MongoDB.
echo "db.dropDatabase()" | mongo -u stratus -p <db_password> --authenticationDatabase admin --host <db_host> stratus
You must run the following command to restore the MarioDB.
mongorestore --host <db_host> -u stratus -p <db_password> --authenticationDatabase admin --db stratus ".\stratus"
6
Maintenance 23