Discover

Get Started

Developers

Industries

Troubleshooting

To quickly identify and resolve issues that may occur during the installation and operation of INNORIX, this section provides troubleshooting procedures for common issue scenarios.

This section describes how to troubleshoot Docker installation, Container deployment, service execution, network connectivity, license activation, and log analysis.

Docker Installation Issues

During the Docker installation process, the installation may fail due to package conflicts, Repository configuration issues, or Docker service startup problems.

Common Symptoms and Causes

SymptomCauseResolution
Docker installation failedExisting Docker package conflictsRemove the existing Docker packages and reinstall
Repository configuration failedRepository configuration errorVerify the Repository for the operating system
Docker command unavailableDocker is not installed or the service is stoppedVerify the Docker installation and service status
Docker permission errorInsufficient user permissionsRun the commands with administrator privileges

Verify Docker Status

Verify the Docker service status.

bash
1
systemctl status docker

Verify the Docker version.

bash
1
docker --version

Verify the Docker Compose version.

bash
1
docker compose version

Actions

If the issue persists, verify the following.

  • Supported operating system version
  • Required Docker Engine version
  • Existing Container Runtime conflicts
  • Server internet connectivity

Container Deployment Issues

During INNORIX Container deployment, Containers may fail to be created due to Docker Compose configuration errors or Image download issues.

Common Symptoms and Causes

SymptomCauseResolution
Container creation failedDocker Compose configuration errorVerify the docker-compose.yml configuration
Image download failedNetwork or authentication issueVerify access to the Docker Repository
Container exits immediatelyEnvironment configuration errorVerify the Container logs
Storage connection failedVolume configuration errorVerify the storage path and permissions

Verify Container Status

Verify the status of the deployed services.

bash
1
docker stack services exacoola

Verify that the REPLICAS value for each service is displayed correctly.

Verify the status of individual Containers (tasks).

bash
1
docker stack ps exacoola

Verify that the CURRENT STATE of each task is Running.

Verification Checklist

If a Container deployment issue occurs, verify the following.

  • Docker service status
  • docker-compose.yml configuration
  • Server IP configuration
  • Storage Mount status
  • Successful download of the Container Images

Service Execution Issues

Even if the Containers are running successfully, issues may occur when accessing the INNORIX service or using its functionality.

Common Symptoms and Causes

SymptomCauseResolution
Unable to access the Web ConsoleService is not runningVerify the Container and service status
Service initialization failedEnvironment configuration errorVerify the configuration files
Agent startup errorHyperlink Agent issueVerify the Agent status
Feature malfunctionInternal service errorVerify the logs

Service Verification Items

ItemVerification
Deployment StatusVerify that the new services and Containers have been deployed successfully
Service StatusINNORIX service status
Agent StatusHyperlink Agent status
ConfigurationVerify that the service configuration has been applied correctly

If you need to verify the Agent status, use the following commands.

Start:

bash
1
/opt/INNORIX/INNORIX_Exacoola start

Stop:

bash
1
/opt/INNORIX/INNORIX_Exacoola stop

Network Connectivity Issues

INNORIX requires stable network connectivity for Web Console access and file Transfer between systems.

Common Symptoms and Causes

SymptomCauseResolution
Unable to access the Web ConsoleBlocked portVerify the firewall configuration
Unable to access the serverIP address or DNS issueVerify the network configuration
File Transfer failedTarget system connectivity issueVerify the communication status
External connectivity failedBlocked by security policyVerify the network policy

Network Verification Items

ItemVerification
Server IPVerify that the server IP is configured correctly
DNSVerify domain resolution
FirewallVerify that the required ports are allowed
Network RouteVerify the communication path

Actions

If a network issue occurs, verify the following in order.

  1. Verify server network connectivity.
  2. Verify the IP address and DNS configuration.
  3. Verify the firewall policy.
  4. Verify access to the service ports.
  5. Verify connectivity with the target systems.

License Activation Issues

A valid license activation is required to use all INNORIX features.

Common Symptoms and Causes

SymptomCauseResolution
License registration failedInvalid License KeyVerify the issued License Key
Authentication failedInvalid Authentication KeyVerify the Authentication Key
Feature restrictionsLicense not appliedVerify the license activation status
Server activation failedEnvironment information mismatchVerify the server information

License Verification Items

ItemDescription
WorkspaceVerify that the Workspace has been created
Authentication KeyVerify that the Authentication Key has been generated successfully
License KeyIssued license information
Server InformationInstalled server information

Resolution Procedure

  1. Verify the Workspace status.
  2. Verify the Authentication Key.
  3. Re-enter the License Key.
  4. Verify the server activation status.

Verify Logs and Analyze Issues

When an issue occurs, analyze the logs to determine the root cause.

Log analysis is used to identify service errors, Container issues, and network-related problems.

Log Sources

Log TypeDescription
Docker LogContainer execution and error information
Service LogINNORIX service operation records
System LogServer operating environment information
Network LogConnection and communication information

Verify Docker Logs

Verify the service logs.

bash
1
docker service logs exacoola_[service_name]

Issue Analysis Procedure

  1. Identify the time when the issue occurred.
  2. Verify the service status.
  3. Verify the Container status.
  4. Review the relevant logs.
  5. Analyze the cause and perform corrective actions.
  6. Verify that the service is operating normally.

Verify Troubleshooting Completion

Verification ItemStatus
Docker installation issue resolved
Container deployment issue resolved
Service execution issue resolved
Network connectivity issue resolved
License activation issue resolved
Log verification and issue analysis completed