# Known issue and fix

&#x20;                                                                                 \
\- **Known issues**:

* Migration script race condition operation app startup and work around (This issue has been fixed in version 1.11.1, and future versions)
  1. Port forward ops-mysql -3307
  2. Connect the mysql with root username and password (Get the credentials from mysql pod)
  3. Delete the tenants from tenant server connections table
  4. Run the SQL scripts which didn't run successfully

SQL script:-

```sql
CREATE DATABASE `tenants`;
GRANT ALL PRIVILEGES ON `tenants`.* TO 'mifos';
CREATE DATABASE `tn01`;
CREATE DATABASE `tn02`;
GRANT ALL PRIVILEGES ON `tn01`.* TO 'mifos';
GRANT ALL PRIVILEGES ON `tn02`.* TO 'mifos';
GRANT ALL ON *.* TO 'root'@'%';
```

&#x20;         5\. Restart ops-app pod

* **Deletion of cluster roles and bindings**
  * kubectl delete clusterroles `kubectl get clusterroles |grep c-role|cut -d ’ ' -f1` || echo ' '
  * kubectl delete clusterrolebinding `kubectl get clusterrolebinding |grep c-role|cut -d ’ ' -f1` || echo ' '

\ <br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mifos.gitbook.io/docs/payment-hub-ee/overview/installation-instructions/configuration-instructions/known-issue-and-fix.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
