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
- Representation of sequential rules in data mining (sequence pattern mining)
- How can I resolve in AXS with metamask, to bridge ETHMainnet to zkevm, this don't work
- How to get value of nbits from Bitcoin mining pool stratum response
- Are there several implementations of the Stratum mining protocol?
- How to stop PacketCrypt ann on linux server using cli?
- Can not find mnr_getWork method
- Can't start mining with geth
- Bitcoin miner with address to get funds
- how to split the repository history one line for each commit?
- How do I stop the command console from scrolling to the bottom every time there's a new entry?
- Extract information from a structured text file to create a dataframe in R
- How can the decimal value of the sha256 hash be lower than one?
- How can I extract all databasename.tablename found in all .sql queries in a folder using Powershell?
- Google Cloud Platform: Mining cryptocurrencies
- Unnest non-consecutive tokens in R
Related Questions in EXTERNAL-SCRIPT
- How to execute a script after an external asynchronous script in header tag completes execution?
- External scripts in Android HTTP server don't work
- External javascript scripts no longer run after switching React pages
- Vue - Memory leak with external scripts (non-npm library)
- why isn't this external Python script reading inside its local directory?
- Snakemake: wildcards do not expand in script line of rule
- SQL Server language extension performance
- Creating new instances of external script in React
- How does this specific piece of external copy/paste code get called if the script it relies on loads asynchronously?
- Load a React component at runtime from a plain JSX external script
- External script [Clutch Widget] integration
- Why is my external script not working in my HTML?
- R Udpipe package install into SQL Server error
- How to run memory intensive shell script from PySpark rdd.mapPartitions
- How can I cache external scripts in aws?
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 # Hahtags
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.