Replies: 3 comments
-
Hello, from what I have seen most nut servers will provide the variable information to an enquiry without the need for a user name and password. As a first step I suggest trying to remove username and password from the configuration and see if that works. |
Beta Was this translation helpful? Give feedback.
-
I've checked the code and using a space seems to work in the unchanged YAML. For example, if the configuration file contains: servers:
- server: "10.0.10.180"
port: 3493
devices:
- device: eaton3s
username: monuser
password: secret password Then the data read contains the space: {
"servers": [
{
"server": "10.0.10.180",
"port": 3493,
"devices": [
{
"device": "eaton3s",
"username": "monuser",
"password": "secret password"
}
]
}
]
} I suspect your server is not using the password with a space correctly or does not need a password. |
Beta Was this translation helpful? Give feedback.
-
Ok I will test enclosing the password in quotes. About the user and pasword I cant remove any of both, because Im using Openmediavault in 2 servers with only one UPS and OMV remote NUT connection requiere the user and password. I already changed the password and remove the space and that works. Thanks for the answer. I love the app. Next step is to integrate it in "homepage". |
Beta Was this translation helpful? Give feedback.
-
Hello, looks like the password property dont support blank spaces. Is any workaround to this or my config file is wrong. Im really new to docker an the yaml format so maybe Im missing something.
Note: English is no my native language
Beta Was this translation helpful? Give feedback.
All reactions