Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

title Operations
module operations
id operations-index
order 0
description Service management, monitoring, and troubleshooting
tags
operations
service
monitoring
troubleshooting

Operations

Service management, monitoring, and troubleshooting guides.

Guides

Managing Nexus services:

  • Linux systemd service
  • Windows Service
  • Service commands
  • Auto-start configuration

Viewing and analyzing logs:

  • Log locations
  • Log filtering
  • Log rotation
  • Log analysis

Health checks and metrics:

  • Health check endpoints
  • Prometheus metrics
  • Grafana dashboards
  • Alerting

Data protection:

  • Backup procedures
  • Restore operations
  • Backup scheduling
  • Disaster recovery

Common problems and solutions:

  • Common issues
  • Error messages
  • Performance problems
  • Debugging tips

Quick Reference

Service Commands

Linux:

sudo systemctl status nexus
sudo systemctl start nexus
sudo systemctl stop nexus
sudo systemctl restart nexus

Windows:

Get-Service Nexus
Start-Service Nexus
Stop-Service Nexus
Restart-Service Nexus

Health Check

curl http://localhost:15474/health

View Logs

Linux:

sudo journalctl -u nexus -f

Windows:

Get-Content C:\ProgramData\Nexus\logs\nexus.log -Tail 100 -Wait

Related Topics