Administrative Command Group

The yt admin command group provides comprehensive administrative capabilities for YouTrack system management. These commands require administrative privileges and handle system-wide settings, maintenance, and user management.

Overview

YouTrack administrative operations manage system-wide configurations, user groups, custom fields, and system maintenance. The admin command group allows you to:

  • Manage global YouTrack settings and configuration

  • Handle license information and usage monitoring

  • Perform system maintenance operations

  • Manage user groups and permissions

  • Configure custom fields across projects

  • Monitor system health and diagnostics

Warning

Administrative commands require YouTrack administrator privileges. Users without sufficient permissions will receive appropriate error messages.

Base Command

yt admin [OPTIONS] COMMAND [ARGS]...

Global Settings Management

global-settings get

Retrieve global YouTrack settings and configuration values.

yt admin global-settings get [SETTING_KEY]

Arguments:

  • SETTING_KEY - Specific setting key to retrieve (optional, if omitted returns all settings)

Examples:

# Get all global settings
yt admin global-settings get

# Get a specific setting
yt admin global-settings get server.name

# Get server configuration
yt admin global-settings get server.maxUploadFileSize

# Get authentication settings
yt admin global-settings get auth.sessionTimeout

global-settings set

Set or update global YouTrack settings.

yt admin global-settings set SETTING_KEY VALUE

Arguments:

  • SETTING_KEY - The setting key to update (required)

  • VALUE - The new value for the setting (required)

Examples:

# Set server name
yt admin global-settings set server.name "My YouTrack Instance"

# Set maximum upload file size
yt admin global-settings set server.maxUploadFileSize "50MB"

# Configure session timeout
yt admin global-settings set auth.sessionTimeout "3600"

# Set email notification settings
yt admin global-settings set notifications.enabled "true"

License Management

license show

Display comprehensive license information including expiration, features, and usage limits.

yt admin license show

Examples:

# Display license information
yt admin license show

# Review license before renewal
yt admin license show

license usage

Show detailed license usage statistics and capacity information.

yt admin license usage

Examples:

# Show license usage statistics
yt admin license usage

# Monitor license utilization
yt admin license usage

System Maintenance

maintenance clear-cache

Clear system caches to improve performance or resolve issues.

yt admin maintenance clear-cache [OPTIONS]

Options:

Option

Type

Description

--confirm

flag

Skip confirmation prompt

Examples:

# Clear caches with confirmation prompt
yt admin maintenance clear-cache

# Clear caches without confirmation
yt admin maintenance clear-cache --confirm

# Use in automated maintenance scripts
yt admin maintenance clear-cache --confirm

System Health Monitoring

health check

Run comprehensive system health diagnostics and display system status.

yt admin health check

Examples:

# Run health diagnostics
yt admin health check

# Regular system health monitoring
yt admin health check

# Pre-maintenance health check
yt admin health check

User Groups Management

user-groups list

List all user groups in the YouTrack system with filtering options.

yt admin user-groups list [OPTIONS]

Options:

Option

Type

Description

--fields, -f

string

Comma-separated list of fields to return

Examples:

# List all user groups
yt admin user-groups list

# List groups with specific fields
yt admin user-groups list --fields "id,name,description,users(login)"

# List groups with user information
yt admin user-groups list --fields "id,name,description,users(fullName)"

user-groups create

Create a new user group with specified settings.

yt admin user-groups create NAME [OPTIONS]

Arguments:

  • NAME - The name of the new user group (required)

Options:

Option

Type

Description

--description, -d

string

Group description

Examples:

# Create a basic user group
yt admin user-groups create "DevOps Team"

# Create a group with description
yt admin user-groups create "QA Team" --description "Quality Assurance Team"

# Create project-specific groups
yt admin user-groups create "Project Alpha Team" --description "Alpha project development team"

Custom Fields Management

fields list

List all custom fields configured across YouTrack projects.

yt admin fields list [OPTIONS]

Options:

Option

Type

Description

--fields, -f

string

Comma-separated list of fields to return

Examples:

# List all custom fields
yt admin fields list

# List fields with specific information
yt admin fields list --fields "id,name,fieldType(presentation),isPrivate"

# List field types and usage
yt admin fields list --fields "name,fieldType(presentation),projects(name)"

Administrative Features

Global Settings

System Configuration

Manage server-wide settings including performance, security, and feature configurations.

Authentication Settings

Configure authentication methods, session timeouts, and security policies.

Email Configuration

Set up email servers, notification templates, and delivery settings.

Performance Tuning

Adjust system performance parameters and resource limits.

License Management

License Information

View license details including expiration dates, feature limits, and user capacity.

Usage Monitoring

Track license utilization and capacity planning.

Compliance Tracking

Monitor license compliance and usage patterns.

System Maintenance

Cache Management

Clear system caches to resolve performance issues and ensure data consistency.

Health Monitoring

Comprehensive system health checks and diagnostics.

Performance Optimization

Tools for system performance analysis and optimization.

User and Group Management

User Groups

Create and manage user groups for permission and access control.

Permission Management

Configure group-based permissions and access rights.

Organizational Structure

Set up user groups that reflect organizational hierarchy.

Custom Fields

Field Management

View and manage custom fields across all projects.

Field Configuration

Monitor field usage and configuration across the system.

Data Consistency

Ensure custom field consistency across projects.

Common Administrative Workflows

System Health Monitoring

# Daily health check routine
echo "=== Daily YouTrack Health Check ==="
echo "Date: $(date)"
echo ""

# Check system health
yt admin health check

# Check license status
echo ""
echo "=== License Status ==="
yt admin license show

# Check license usage
echo ""
echo "=== License Usage ==="
yt admin license usage

Regular Maintenance

# Weekly maintenance routine
echo "=== Weekly YouTrack Maintenance ==="

# Clear caches for performance
echo "Clearing system caches..."
yt admin maintenance clear-cache --confirm

# Health check after maintenance
echo "Post-maintenance health check..."
yt admin health check

echo "Maintenance completed at $(date)"

User Group Management

# Set up new project team
PROJECT_NAME="Alpha"

# Create project-specific groups
yt admin user-groups create "${PROJECT_NAME} Developers" \
  --description "Development team for ${PROJECT_NAME} project"

yt admin user-groups create "${PROJECT_NAME} Testers" \
  --description "QA team for ${PROJECT_NAME} project"

yt admin user-groups create "${PROJECT_NAME} Managers" \
  --description "Project managers for ${PROJECT_NAME} project"

# List created groups
yt admin user-groups list --fields "name,description"

System Configuration

# Configure system settings for new installation
echo "Configuring YouTrack system settings..."

# Set basic server information
yt admin global-settings set server.name "Company YouTrack"
yt admin global-settings set server.maxUploadFileSize "100MB"

# Configure authentication
yt admin global-settings set auth.sessionTimeout "7200"

# Enable notifications
yt admin global-settings set notifications.enabled "true"

# Verify configuration
echo "Verifying configuration..."
yt admin global-settings get

License Monitoring

#!/bin/bash
# License monitoring and alerting script

echo "=== License Monitoring Report ==="
echo "Generated: $(date)"
echo ""

# Get license information
LICENSE_INFO=$(yt admin license show)
USAGE_INFO=$(yt admin license usage)

echo "$LICENSE_INFO"
echo ""
echo "$USAGE_INFO"

# Alert if usage is high (example threshold: 80%)
# This would need proper parsing of the actual output format
echo ""
echo "=== Usage Analysis ==="
echo "License monitoring completed"

Best Practices

  1. Regular Monitoring: Perform regular health checks and license monitoring.

  2. Maintenance Scheduling: Schedule maintenance operations during low-usage periods.

  3. Permission Management: Use groups for permission management rather than individual assignments.

  4. Documentation: Document all administrative changes and configurations.

  5. Backup Before Changes: Always backup configurations before making changes.

  6. Testing: Test administrative changes in non-production environments first.

  7. Monitoring: Set up monitoring for license usage and system health.

  8. Security: Follow security best practices for administrative access.

  9. Change Management: Use proper change management processes for system modifications.

  10. Capacity Planning: Monitor usage trends for capacity planning and license management.

Security Considerations

Administrative Access

  • Limited Access: Restrict administrative access to authorized personnel only

  • Audit Trail: Maintain audit logs of administrative actions

  • Role Separation: Separate development and administrative responsibilities

  • Regular Review: Regularly review and update administrative permissions

System Security

  • Setting Validation: Validate all configuration changes for security implications

  • Secure Defaults: Use secure default values for system settings

  • Regular Updates: Keep system configurations current with security best practices

  • Access Monitoring: Monitor administrative access and actions

Troubleshooting

Common Issues and Solutions

Permission Denied Errors

Verify administrative privileges and check authentication status.

Setting Not Found

Check setting key spelling and availability in your YouTrack version.

Cache Clear Failures

Ensure system has sufficient resources and no active maintenance operations.

Group Creation Failures

Check for naming conflicts and permission requirements.

Health Check Issues

Review system logs and resource availability.

Health Check 404 Errors

If the health check command returns a 404 error, this may indicate:

  • Your YouTrack version doesn’t support the system settings endpoint

  • The API endpoint has changed in your YouTrack version

  • Your YouTrack instance has a different API configuration

The command will automatically try fallback endpoints and provide specific guidance based on the error type.

System Diagnostics

# Administrative troubleshooting workflow
echo "=== YouTrack Administrative Diagnostics ==="

# Check authentication and permissions
echo "1. Authentication check..."
if yt admin health check > /dev/null 2>&1; then
  echo "✅ Administrative access verified"
else
  echo "❌ Administrative access failed"
  exit 1
fi

# Check system health
echo "2. System health check..."
yt admin health check

# Check license status
echo "3. License status..."
yt admin license show

echo "Diagnostics completed"

Error Recovery

# Error recovery procedures
echo "=== Administrative Error Recovery ==="

# Clear caches if system is unresponsive
echo "Clearing system caches..."
yt admin maintenance clear-cache --confirm

# Verify system health after recovery
echo "Verifying system health..."
yt admin health check

# Check critical settings
echo "Verifying critical settings..."
yt admin global-settings get server.name
yt admin global-settings get auth.sessionTimeout

Integration Examples

Monitoring Integration

#!/bin/bash
# Integration with monitoring systems

# Health check for monitoring system
if yt admin health check > /dev/null 2>&1; then
  echo "youtrack_health_status 1"
else
  echo "youtrack_health_status 0"
fi

# License usage metrics
# This would need proper parsing of actual output
echo "youtrack_license_usage_percent 75"

Backup Integration

#!/bin/bash
# Backup administrative configurations

BACKUP_DIR="/backup/youtrack/$(date +%Y%m%d)"
mkdir -p "$BACKUP_DIR"

# Export global settings
yt admin global-settings get > "$BACKUP_DIR/global_settings.txt"

# Export user groups
yt admin user-groups list --fields "id,name,description" > "$BACKUP_DIR/user_groups.txt"

# Export custom fields
yt admin fields list > "$BACKUP_DIR/custom_fields.txt"

echo "Administrative backup completed: $BACKUP_DIR"

Automation Scripts

#!/bin/bash
# Automated administrative maintenance

LOG_FILE="/var/log/youtrack_admin.log"

log() {
  echo "$(date): $1" | tee -a "$LOG_FILE"
}

log "Starting automated maintenance"

# Clear caches
log "Clearing system caches"
yt admin maintenance clear-cache --confirm

# Health check
log "Running health check"
if yt admin health check > /dev/null 2>&1; then
  log "Health check passed"
else
  log "Health check failed - alerting administrators"
  # Send alert to administrators
fi

log "Automated maintenance completed"

Limitations

  • Some administrative operations may require web interface access

  • Complex permission configurations may not be fully exposed via CLI

  • Advanced system configurations may require direct database access

  • Certain maintenance operations may require system restart

See Also