Closed TamasSzerb closed 8 years ago
I would suspect it's a user error either the credentials are wrong, or you got some spaces maybe after account name or the key while copy/pasting. I suggest typing those values again (perhaps with another storage account) and restarting the service.
Thanks, @ahmetalpbalkan indeed a whitespace issue.
the key fetched from (the key1).
Where I installed the driver to the DC/OS nodes by:
sudo systemctl stop azurefile-dockervolumedriver && sudo wget -O /usr/bin/azurefile-dockervolumedriver --no-check-certificate https://github.com/Azure/azurefile-dockervolumedriver/releases/download/v0.5.1/azurefile-dockervolumedriver && sudo chmod +x /usr/bin/azurefile-dockervolumedriver && /usr/bin/azurefile-dockervolumedriver --version && sudo wget --no-check-certificate -O /etc/default/azurefile-dockervolumedriver https://raw.githubusercontent.com/Azure/azurefile-dockervolumedriver/master/contrib/init/systemd/azurefile-dockervolumedriver.default && sudo sed -i 's/AZURE_STORAGE_ACCOUNT=.*/AZURE_STORAGE_ACCOUNT=[redacted]/g;s/AZURE_STORAGE_ACCOUNT_KEY=.*/AZURE_STORAGE_ACCOUNT_KEY=[redacted]==/g' /etc/default/azurefile-dockervolumedriver && sudo wget --no-check-certificate -q https://raw.githubusercontent.com/Azure/azurefile-dockervolumedriver/master/contrib/init/systemd/azurefile-dockervolumedriver.service -O /etc/systemd/system/azurefile-dockervolumedriver.service && sudo systemctl daemon-reload && sudo systemctl enable azurefile-dockervolumedriver && sudo systemctl start azurefile-dockervolumedriver && sudo systemctl status azurefile-dockervolumedriver && echo OK
resulted OK.
Do you have any idea, where to fix it?
Thanks,
Tamas