First Launch

Overview

Post-installation verification and initial configuration guide for Oju. These steps ensure proper platform functionality before beginning security monitoring of your entities.

System Verification

Service Status Check

# Verify all containers are running
docker-compose ps

# Expected result: all services showing "Up"
#   Name                 State    Ports
# Oju_backend     Up       8000/tcp
# Oju_frontend    Up       3000/tcp
# Oju_nginx       Up       80/tcp, 443/tcp
# Oju_postgres    Up       5432/tcp
# Oju_redis       Up       6379/tcp
# Oju_celery_*    Up

Interface Access

Main Application Interface

First Access :

  1. Open browser to your domain

  2. Login page should display correctly

oju interface
Figure 1. Oju interface

Django Admin Interface

Administrator Login :

  1. Use credentials created during installation

  2. Django admin interface should be accessible

  3. Management menu should be visible

django interface
Figure 2. Django interface

Backup Configuration

Configuration Backup

# Backup critical files
tar -czf Oju-config-$(date +%Y%m%d).tar.gz .env docker-compose.yml

# Backup SSL certificates
tar -czf Oju-ssl-$(date +%Y%m%d).tar.gz nginx/ssl/

Database Backup

# PostgreSQL export
docker-compose exec postgres pg_dump -U postgres Oju_db > Oju-db-$(date +%Y%m%d).sql

# Test restoration (optional)
cat Oju-db-YYYYMMDD.sql | docker-compose exec -T postgres psql -U postgres Oju_db

Oju is now operational and ready for production cybersecurity monitoring!

For advanced usage and administration, explore the detailed feature documentation and administration guides.