Install Guide
Table Of Contents
- Dell Wyse Management Suite Version 1.0 Quick Start Guide
- Introduction
- Getting started with Wyse Management Suite
- Installing Wyse Management Suite on private cloud
- Deploying applications to thin clients
- Uninstalling Wyse Management Suite
- Troubleshooting Wyse Management Suite
- Introduction to remote database
- Custom installation
- Wyse Management Suite feature matrix
- Supported thin clients on Wyse management Suite
- Creating and configuring DHCP option tags
- Creating and configuring DNS SRV records
- Creating and deploying advanced application policy to thin clients
- Registering Windows Embedded Standard device manually
- Registering Linux device manually
- Terms and definitions
use admin;
11. After the MongoDB sheet is displayed, run the following commands:
db.createUser(
{
user:"wmsuser",
pwd:"PASSWORD",
roles:[{role:"userAdminAnyDatabase",db:"admin"},
{role:"dbAdminAnyDatabase",db:"admin"},
{role:"readWriteAnyDatabase",db:"admin"},
{role:"dbOwner",db:"stratus"}]
}
)
12. To switch to the stratus database, run the following command:
use stratus;
13. To stop the MongoDB services, run the following command:
net stop mongoDB
14. Add an authentication permission to the admin DB. Modify the mongod.cfg file to the following:
systemLog:
destination:file
path:c:\data\log\mongod.log
storage:
dbPath:c:\data\db
security:
authorization:enabled
15. To restart the MongoDB service, run the following:
net Start mongoDB;
Next steps
In the Wyse Management Suite installer, the administrator must use the same user name and password that was created
to access the stratus databases in MongoDB. For information about setting the MongoDB on the Wyse Management Suite
installer, see Custom installation.
Configuring Maria database
Maria database (MariaDB) operates on the Transmission Control Protocol (TCP) port number 3306.
About this task
NOTE:
● The IP address displayed here belongs to the Wyse Management Suite server that hosts the web components.
● Replace any value that is boldfaced with your environment variables, as applicable.
To configure MariaDB, do the following:
Steps
1. Install the MariaDB version 10.0.26.
2. Navigate to the MariaDB installation path—C:\Program Files\MariaDB 10.0\bin>mysql.exe -u root –p.
3. Provide the root password which was created during installation
4. Create the database stratus—DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_unicode_ci;.
5. Create user 'stratus'@'localhost';
6. Create user 'stratus'@'IP ADDRESS';
7. Set a password for 'stratus'@'localhost'=password('PASSWORD');
8. Set a password for 'stratus'@'IP ADDRESS'=password('PASSWORD');
Introduction to remote database
31