Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Installer Download: https://github.com/snetsystems/salt/releases/download/v3001.4-5/Salt-Minion-3001.4-Py3-x86-Setup.exe

  2. Config Path: C:\salt\conf\minion (default salt root path: c:\salt)

    Code Block
    languagebash
    ## log_level ##
    # One of 'garbage', 'trace', 'debug', info', 'warning'(default), 'error', 'critical'.
    log_level: info
    master: <master ip address>
    id: <유일한 minion id 설정해야 하며, 생략 시, hostname = minion id>
    
    # The maximum number of bytes a single log file may contain before it is rotated.
    # A value of 0 disables this feature.
    # Currently only supported on Windows.
    # On other platforms, use an external tool such as 'logrotate' to manage log files.
    log_rotate_max_bytes: 314572800 #300MB
    
    # The number of backup files to keep when rotating log files.
    # Only used if log_rotate_max_bytes is greater than 0.
    # Currently only supported on Windows.
    # On other platforms, use an external tool such as 'logrotate' to manage log files.
    log_rotate_backup_count: 7
  3. 윈도우 서비스에서 salt-minion [재]시작.

...