Mattermost Error: MySQL FULLTEXT indexes issue in logs
While working on Mattermost in my local machine I got the following error:
MySQL FULLTEXT indexes
Solution for fixing the issue is:
1. Login the server
2. Login to the mysql prompt:
show table status;
3. There you can see all the tables are having Engine as MYISAM.
4. You need to update those tables as INNODB
ALTER TABLE <table name> ENGINE = INNODB;
This helped to solve the issue.
While working on Mattermost in my local machine I got the following error:
MySQL FULLTEXT indexes
Solution for fixing the issue is:
1. Login the server
2. Login to the mysql prompt:
show table status;
3. There you can see all the tables are having Engine as MYISAM.
4. You need to update those tables as INNODB
ALTER TABLE <table name> ENGINE = INNODB;
This helped to solve the issue.
No comments:
Post a Comment