Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Wotaan

Members
  • Joined

Everything posted by Wotaan

  1. Hey Thanks for your answer and sorry for the Long post^^ i make a big mistake it was the timezone it was human mistake shame on me XDDDD sry sry sry thank you for your help its a nice cummuinity here i wish you all the best and sry again XD greets
  2. hi first thanks and respect for your hard work! i cannot start plotting (synology nas via docker) with version 202162 i have no problems, but with latest and develop i cannot start plotting .(it says startet but dont start and no plot shows the grafic is the same as no started) log is with farming and pool key but here i delete plotman log: # Learn more about Plotman at https://github.com/ericaltendorf/plotman # https://github.com/ericaltendorf/plotman/wiki/Configuration#versions version: [2] logging: # DO NOT CHANGE THIS IN-CONTAINER PATH USED BY MACHINARIS! plots: /root/.chia/plotman/logs user_interface: use_stty_size: False commands: interactive: autostart_plotting: False autostart_archiving: False # Where to plot and log. directories: # One or more directories to use as tmp dirs for plotting. The # scheduler will use all of them and distribute jobs among them. # It assumes that IO is independent for each one (i.e., that each # one is on a different physical device). # # If multiple directories share a common prefix, reports will # abbreviate and show just the uniquely identifying suffix. # REMEMBER ALL PATHS ARE IN-CONTAINER, THEY MAP TO HOST PATHS tmp: - /plotting # Optional: Allows overriding some characteristics of certain tmp # directories. This contains a map of tmp directory names to # attributes. If a tmp directory and attribute is not listed here, # it uses the default attribute setting from the main configuration. # # Currently support override parameters: # - tmpdir_max_jobs #tmp_overrides: # In this example, /plotting3 is larger than the other tmp # dirs and it can hold more plots than the default. #/plotting3: # tmpdir_max_jobs: 5 # Optional: tmp2 directory. If specified, will be passed to # the chia and madmax plotters as the '-2' param. # tmp2: /plotting2 # One or more directories; the scheduler will use all of them. # These again are presumed to be on independent physical devices, # so writes (plot jobs) and reads (archivals) can be scheduled # to minimize IO contention. # REMEMBER ALL PATHS ARE IN-CONTAINER, THEY MAP TO HOST PATHS dst: - /plots # See: https://github.com/guydavis/machinaris/wiki/Plotman#archiving #archiving: #target: rsyncd #env: #site_root: /mnt/disks #user: root #host: aragorn #rsync_port: 12000 #site: disks # Plotting scheduling parameters scheduling: # Run a job on a particular temp dir only if the number of existing jobs # before tmpdir_stagger_phase_major tmpdir_stagger_phase_minor # is less than tmpdir_stagger_phase_limit. # Phase major corresponds to the plot phase, phase minor corresponds to # the table or table pair in sequence, phase limit corresponds to # the number of plots allowed before [phase major, phase minor] tmpdir_stagger_phase_major: 2 tmpdir_stagger_phase_minor: 1 # Optional: default is 1 tmpdir_stagger_phase_limit: 1 # Don't run more than this many jobs at a time on a single temp dir. # Increase for staggered plotting by chia, leave at 1 for madmax sequential plotting tmpdir_max_jobs: 1 # Don't run more than this many jobs at a time in total. # Increase for staggered plotting by chia, leave at 1 for madmax sequential plotting global_max_jobs: 1 # Don't run any jobs (across all temp dirs) more often than this, in minutes. global_stagger_m: 30 # How often the daemon wakes to consider starting a new plot job, in seconds. polling_time_s: 20 # Configure the plotter. See: https://github.com/guydavis/machinaris/wiki/Plotman#plotting plotting: #farmer_pk: #pool_pk: #pool_contract_address: YOUR_POOL_CONTRACT_ADDRESS (optional if plotting solo) # If you enable 'chia', plot in *parallel* with higher tmpdir_max_jobs and global_max_jobs # If you enable 'madmax', plot in *sequence* with very low tmpdir_max_jobs and global_max_jobs type: madmax # The chia plotter: https://github.com/Chia-Network/chia-blockchain chia: k: 32 # k-size of plot, leave at 32 most of the time e: False # Disable bitfield back sorting (default is True) n_threads: 2 # Threads per job n_buckets: 128 # Number of buckets to split data into job_buffer: 3389 # Per job memory # The madmax plotter: https://github.com/madMAx43v3r/chia-plotter madmax: n_threads: 4 # Default is 4, SLOWLY crank up if you have many cores n_buckets: 256 # Default is 256 and apisvr log [2021-07-06 09:15:02 +0000] [2500] [INFO] Starting gunicorn 20.1.0 [2021-07-06 09:15:04 +0000] [2500] [INFO] Listening at: http://0.0.0.0:8927 (2500) [2021-07-06 09:15:04 +0000] [2500] [INFO] Using worker: sync [2021-07-06 09:15:04 +0000] [2799] [INFO] Booting worker with pid: 2799 [2021-07-06 09:15:04 +0000] [2804] [INFO] Booting worker with pid: 2804 [2021-07-06 09:15:29 +0000] [2799] [INFO] Starting Plotman run... [2021-07-06 09:15:30 +0000] [2799] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:15:30 +0000] [2799] [INFO] Failed to start Plotman plotting run! [2021-07-06 09:15:30 +0000] [2799] [INFO] Traceback (most recent call last): File "/machinaris/api/commands/plotman_cli.py", line 102, in start_plotman if len(load_plotting_summary().rows) == 0: # No plots running File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:15:49 +0000] [2799] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:15:49 +0000] [2799] [INFO] Failed to load plotting summary and send. [2021-07-06 09:15:49 +0000] [2799] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:16:01 +0000] [2799] [INFO] No log file found at /root/.chia/plotman/logs/plotman.log [2021-07-06 09:16:20 +0000] [2500] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:16:20 +0000] [2500] [INFO] Failed to load plotting summary and send. [2021-07-06 09:16:20 +0000] [2500] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:17:49 +0000] [2500] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:17:49 +0000] [2500] [INFO] Failed to load plotting summary and send. [2021-07-06 09:17:49 +0000] [2500] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:19:15 +0000] [2500] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:19:15 +0000] [2500] [INFO] Failed to load plotting summary and send. [2021-07-06 09:19:15 +0000] [2500] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:20:19 +0000] [2500] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:20:19 +0000] [2500] [INFO] Failed to load plotting summary and send. [2021-07-06 09:20:19 +0000] [2500] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:21:40 +0000] [2500] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:21:40 +0000] [2500] [INFO] Failed to load plotting summary and send. [2021-07-06 09:21:40 +0000] [2500] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:22:40 +0000] [2500] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:22:40 +0000] [2500] [INFO] Failed to load plotting summary and send. [2021-07-06 09:22:40 +0000] [2500] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:24:10 +0000] [2500] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:24:10 +0000] [2500] [INFO] Failed to load plotting summary and send. [2021-07-06 09:24:10 +0000] [2500] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:25:14 +0000] [2500] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:25:14 +0000] [2500] [INFO] Failed to load plotting summary and send. [2021-07-06 09:25:14 +0000] [2500] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:26:29 +0000] [2500] [ERROR] Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config [2021-07-06 09:26:29 +0000] [2500] [INFO] Failed to load plotting summary and send. [2021-07-06 09:26:29 +0000] [2500] [INFO] Traceback (most recent call last): File "/machinaris/api/schedules/status_plotting.py", line 23, in update plotting_summary = plotman_cli.load_plotting_summary() File "/machinaris/api/commands/plotman_cli.py", line 47, in load_plotting_summary abort(500, description=errs.decode('utf-8')) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 940, in abort _aborter(status, *args, **kwargs) File "/chia-blockchain/venv/lib/python3.9/site-packages/werkzeug/exceptions.py", line 923, in __call__ raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.InternalServerError: 500 Internal Server Error: Traceback (most recent call last): File "/chia-blockchain/venv/bin/plotman", line 8, in <module> sys.exit(main()) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/plotman.py", line 169, in main cfg = configuration.get_validated_configs(config_text, config_path, preset_target_definitions_text) File "/chia-blockchain/venv/lib/python3.9/site-packages/plotman/configuration.py", line 91, in get_validated_configs raise ConfigurationException( plotman.configuration.ConfigurationException: madMAx selected as plotter but no plotting: farmer_pk: was specified in the config ps. the logs are now from develop i see here is maybe something happend but i cannot figure it out please maybe someone have a idiea?^^ thank you for your time and help yours flo

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.