Apinizer Documentation Troubleshooting Current: Useful Commands Useful Commands ProblemUseful CommandsMongodb.users.find( { name: "Joe" } );db.db_to_api.find().pretty();mongodump --authenticationDatabase "admin" --port 25080 -d apinizerdb -u apinizer -p PASSWORDsudo tail -999f /var/log/mongodb/mongod.logLinux//Changing the system clock after the control with date command and seeing it is in wrong zone:sudo ln -sf /usr/share/zoneinfo/Europe/Istanbul /etc/localtime//If it is in correct zone but still wrong: date -s '2014-12-25 12:34:56'Kubernetesjournalctl -xeu kubeletkubectl get events --all-namespaces --sort-by='.metadata.creationTimestamp'kubectl describe pod -n PODNAMESPACE PODNAMEkubectl exec -it podName -n prod -- curl x.y.gov.trElasticsearchcurl -XPUT '10.1.1.1:9200/*log*/_settings' -H 'Content-Type: application/json' -d'{"index": {"blocks": {"read_only_allow_delete": null}}}'curlcurl -D - --header "Content-Type:text/xml;charset=UTF-8" --header "SOAPAction:XXX" -d '#SOAP BODY GOES HERE#' https://api.address/apigateway/relativepath >> response.txt//Disable Ssl check: -k//Sending request with verbose logging: -v//timeout: -m 10//Sending username and have it ask for password: -u abc//Saving the response as file: --output response.txt ×