Users Guide
Table Of Contents
- SupportAssist Enterprise Version 1.1 User's Guide
- Overview
- Getting started with SupportAssist Enterprise
- Setting up SupportAssist Enterprise for the local system
- Setting up SupportAssist Enterprise for remote devices
- Evaluating SupportAssist Enterprise
- Downloading the SupportAssist Enterprise installation package
- Installing, Upgrading, or Migrating to SupportAssist Enterprise
- Minimum requirements for installing and using SupportAssist Enterprise
- Installing SupportAssist Enterprise
- Operating system considerations for installing SupportAssist Enterprise
- Installing SupportAssist Enterprise by using the SupportAssist Enterprise installer package (Windows)
- Installing SupportAssist Enterprise by using the SupportAssist Enterprise installer package (Linux)
- Installing SupportAssist Enterprise in silent mode (Linux)
- Installing SupportAssist Enterprise by using the OpenManage Essentials installation package
- Upgrading SupportAssist Enterprise
- Migrating to SupportAssist Enterprise
- Using SupportAssist Enterprise without registration
- Registering SupportAssist Enterprise
- Setting up an SELinux enabled system to receive alerts
- Opening the SupportAssist Enterprise user interface
- Logging in to SupportAssist Enterprise
- Logging out of SupportAssist Enterprise
- Adding devices
- Device types and applicable devices
- Adding a single device
- Adding a server or hypervisor
- Adding an iDRAC
- Adding a chassis
- Adding a Networking device
- Adding a PowerVault MD Series storage array
- Adding an EqualLogic PS Series storage solution
- Adding a Compellent SC Series storage solution
- Adding a Fluid File System (FluidFS) NAS device
- Adding a software
- Adding a solution
- Adding a device by duplication
- Importing multiple devices
- Exporting details of devices that were not imported
- Revalidating a device
- Viewing cases and devices
- Device grouping
- Using Extensions
- Types of extensions
- Support for setting up adapter or Remote Collector
- Getting started with inventorying devices managed by OpenManage Essentials or Microsoft System Center Operations Manager
- Adapters
- Remote Collectors
- Managing device credentials
- Maintaining SupportAssist Enterprise capability
- Enabling or disabling monitoring of a device
- Installing or upgrading OMSA by using SupportAssist Enterprise
- Configuring SNMP settings by using SupportAssist Enterprise
- Viewing and updating the contact information
- Configuring proxy server settings
- Connectivity test
- Testing the case creation capability
- Clearing the System Event Log (SEL)
- Automatic update
- Deleting a device
- Opting in or opting out from ProSupport Plus recommendation report emails
- Configuring email notifications
- Configuring collection settings
- Prerequisites for collecting system information
- Enabling or disabling the automatic collection of system information on case creation
- Enabling or disabling the periodic collection of system information from all devices
- Enabling or disabling the collection of identity information
- Enabling or disabling the collection of software information and the system log
- Enabling or disabling the automatic upload of collections
- Viewing collections
- Using SupportAssist Enterprise to collect and send system information
- Understanding maintenance mode
- SupportAssist Enterprise user groups
- Manually configuring SNMP settings
- Manually configuring the alert destination of a server
- Manually configuring the alert destination of a server by using the script file (Windows)
- Manually configuring the alert destination of a server (Windows)
- Manually configuring the alert destination of a server by using the script file (Linux)
- Manually configuring the alert destination of a server (Linux)
- Manually configuring the alert destination of iDRAC by using the web interface
- Manually configuring the alert destination of a chassis by using the web interface
- Manually configuring the alert destination of a networking device
- Manually configuring the alert destination of a server
- Other useful information
- Monitoring servers for hardware issues
- Support for automatically installing or upgrading OMSA
- Support for automatically configuring SNMP settings
- Device correlation
- Detection of hardware issues in attached storage devices
- Support for Dell OEM servers
- Installing Net-SNMP (Linux only)
- Configuring sudo access for SupportAssist Enterprise (Linux)
- Ensuring successful communication between the SupportAssist Enterprise application and the SupportAssist server
- Accessing the SupportAssist Enterprise application logs
- Event storm handling
- Accessing the context-sensitive help
- Viewing SupportAssist Enterprise product information
- Uninstalling SupportAssist Enterprise
- Identifying the generation of a Dell PowerEdge server
- Troubleshooting
- Installing SupportAssist Enterprise
- SupportAssist Enterprise registration
- Opening the SupportAssist Enterprise user interface
- Logging in to SupportAssist Enterprise
- Unable to add device
- Unable to add adapter
- Unable to add Remote Collector
- Disconnected
- Importing multiple devices
- OMSA not installed
- SNMP not configured
- New version of OMSA available
- Unable to configure SNMP
- Unable to verify SNMP configuration
- Unable to install OMSA
- Unable to verify OMSA version
- OMSA not supported
- Unable to reach device
- Unable to gather system information
- Insufficient storage space to gather system information
- Unable to export collection
- Unable to send system information
- Authentication failed
- Clearing System Event Log failed
- Maintenance mode
- Auto update
- Unable to edit device credentials
- Automatic case creation
- Scheduled tasks
- SupportAssist Enterprise services
- Other services
- Security
- SupportAssist Enterprise user interface
- Error code appendix
- Related documents and resources

Next steps
● To allow SupportAssist Enterprise to automatically create a support case when a hardware issue occurs on the local system:
1. Install or upgrade Dell OpenManage Server Administrator (OMSA) on the local system. See Installing or upgrading OMSA
by using SupportAssist Enterprise.
2. Configure the SNMP settings of the local system. See Configuring SNMP settings by using SupportAssist Enterprise.
3. Enable SupportAssist Enterprise to monitor hardware issues that may occur on the local system. See Enabling or disabling
monitoring of a device.
● If you have installed SupportAssist Enterprise on a server running a Linux operating system that has Security Enhanced Linux
(SELinux) enabled, set up the server to receive alerts from remote devices. For more information, see Setting up an SELinux
enabled system to receive alerts.
● Add devices in SupportAssist Enterprise. For more information, see Adding devices.
● (Optional) If your company utilizes an SMTP server (email server), configure the SMTP server settings in SupportAssist
Enterprise. This enables SupportAssist Enterprise to utilize the SMTP server to send you device status and connectivity
status email notifications. For more information, see Configuring the SMTP server settings.
● (Optional) Update the contact details of the primary and secondary SupportAssist Enterprise contacts and provide a parts
dispatch address. See Viewing and updating the contact information.
● (Optional) If you want to manage a set of devices as a group, create one or more device groups based on your preference.
See Device grouping.
Setting up an SELinux enabled system to receive
alerts
About this task
Security-Enhanced Linux (SELinux) is a security module that authorizes or prevents operations in Linux operating systems.
When SELinux is enabled on the system running SupportAssist Enterprise, alerts (SNMP traps) from remote devices are not
received by SupportAssist Enterprise. Without receiving alerts, SupportAssist Enterprise will not be able to identify hardware
issues that may occur on remote devices. Therefore, you must perform the following steps on the system running SupportAssist
Enterprise to allow SupportAssist Enterprise to receive alerts from remote devices.
NOTE:
SELinux is enabled by default in Red Hat Enterprise Linux 6 and 7, CentOS 6 and 7, and Oracle Enteprise Linux 6
and 7.
Steps
1. Open the terminal window and create a policy file named supportassistpolicy.te.
2. Open the policy file (supportassistpolicy.te) and type the following:
module supportassistpolicy 1.0;
require {
type websm_port_t;
type snmpd_t;
type root_t;
class tcp_socket name_connect;
class dir { write add_name };
class file { write getattr open create };
}
#============= snmpd_t ==============
allow snmpd_t websm_port_t:tcp_socket name_connect;
allow snmpd_t root_t:dir write;
allow snmpd_t root_t:dir add_name;
allow snmpd_t root_t:file { write create open getattr };
3. Save the policy file.
4. Browse to the folder where you saved the policy file.
5. Type checkmodule -M -m -o supportassistpolicy.mod supportassistpolicy.te and press Enter.
6. Type semodule_package -o supportassistpolicy.pp -m supportassistpolicy.mod and press Enter.
Getting started with SupportAssist Enterprise
33