I'm trying the external script here https://github.com/AndOr0812/zabbix-antminer And after I configured the scripts and proxy settings, I was keeping getting zero data, both in Zabbix and the commandline. I have done chmod 755 and disabled firewall. It shows "[107] Transport endpoint is not connected". Any ideas on what to check/debugg?
External Scripts connnecting miner to Zabbix getting zero data
474 Views Asked by Jin At
1
There are 1 best solutions below
Related Questions in PYTHON
- How to store a date/time in sqlite (or something similar to a date)
- Instagrapi recently showing HTTPError and UnknownError
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- How to create a regular expression to partition a string that terminates in either ": 45" or ",", without the ": "
- Python Geopandas unable to convert latitude longitude to points
- Influence of Unused FFN on Model Accuracy in PyTorch
- Seeking Python Libraries for Removing Extraneous Characters and Spaces in Text
- Writes to child subprocess.Popen.stdin don't work from within process group?
- Conda has two different python binarys (python and python3) with the same version for a single environment. Why?
- Problem with add new attribute in table with BOTO3 on python
- Can't install packages in python conda environment
- Setting diagonal of a matrix to zero
- List of numbers converted to list of strings to iterate over it. But receiving TypeError messages
- Basic Python Question: Shortening If Statements
- Python and regex, can't understand why some words are left out of the match
Related Questions in ZABBIX
- Trying to get net.if.in and net.if.out values with zabbix api python
- Zabbix parsing macros value
- Ansible: working with loops within a task not on a task
- Goggle Apps Script integration with Zabbix
- Zabbix Custom Widget - Time selector
- Zabbix appliance 6.2 - Can't login in to VM
- pyzabbix ZabbixAPI creating http agent item - preprocessing params
- Zabbix shows me multiple alerts for the same problem
- Replication postgresql database error connection between master to standby
- Mainframe monitoring using Zabbix
- Item in zabbix does not display data
- Grafana. Can you split one-field one-row table with json value into multiple fields and rows in Grafana table dashboard?
- ansible zabbix module - loop though templates
- zabbix triger does not set the trigger to the ok state when using no data
- Zabbix create item using item prototype
Related Questions in MINING
- How do I preserve table structure after using TM to clean up a CSV file?
- Issue with Apriori Function in R
- search twitter and collect search results from 'mining the social web' examples
- How do you convert all the pdfs in a directory, into txt format, via R?
- Scrypt algorithm output doesen't match up as expected
- python-TypeError: string indices must be integers. How to fix?
- Social Network Dataset
- How to stop PacketCrypt ann on linux server using cli?
- Are there several implementations of the Stratum mining protocol?
- How to get value of nbits from Bitcoin mining pool stratum response
- .sql file on R studio without any DB software?
- pm4py Error: cannot import name 'factory' from 'pm4py.algo.discovery.alpha'
- What is the best Linux Crypto currency mining program to use that doesn't require a GPU?
- How authority in Parity Proof of Authority chain choose to mine
- I have connected two notes using bootnode in ethereum private blockchain but mining is not started why?
Related Questions in EXTERNAL-SCRIPT
- How to limit the number of sites 3rd party javascript is deployed on?
- Why is my external script not included and how to change inner HTML
- How to run javascript function inside a ASPX file from a HTML file?
- Access django sqlite db from external script
- Continue execution after calling php passthru() function
- GWT - IE not downloading external scripts included in UiBinder
- Why is my external script not working in my HTML?
- External script [Clutch Widget] integration
- Load a React component at runtime from a plain JSX external script
- How to use clickWrap API inside a react SPA
- Codeigniter - sending json to script file
- How to run an external script in mocha
- How does this specific piece of external copy/paste code get called if the script it relies on loads asynchronously?
- Creating new instances of external script in React
- SQL Server language extension performance
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Make sure
antminer-zbx-chkis responsible for your problems:When the script is replaced by
echo 0, is the error message gone?Look on internet for your error message, this seems to be a timeout value. On https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems/8466-many-time_wait-connection/page2 in issue with getpeername is mentioned. Maybe look into that.
Look how long the external script takes:
When it takes more then 10 seconds you must look for an async solution. When it takes 1-10 you can consider an async solution.
Async: One job that fires the antminer in the background and returns before a result is given. Another job that takes a look at the result or even betterL Make a script calling antminer and use zabbix_sender when a result is found.