Skip to content

Commit 51f1a53

Browse files
Merge pull request #5138 from Malith-19/improve-mysql-docs
Improve the docs for mysql.
2 parents 86f1071 + 9fb19d3 commit 51f1a53

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

en/identity-server/6.0.0/docs/deploy/change-to-mysql.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ By default, WSO2 Identity Server uses the embedded H2 database as the database
44
for storing user management and registry data. Given below are the steps
55
you need to follow in order to use MySQL for this purpose.
66

7+
!!! note
8+
If you are using MySQL version 8.0 or later, make sure that you
9+
create the database with charset latin1 as shown in the example below:
10+
11+
```
12+
create database <db_name> character set latin1;
13+
```
714
---
815

916
## Datasource configurations

en/identity-server/6.1.0/docs/deploy/change-to-mysql.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ By default, WSO2 Identity Server uses the embedded H2 database as the database
44
for storing user management and registry data. Given below are the steps
55
you need to follow in order to use MySQL for this purpose.
66

7+
!!! note
8+
If you are using MySQL version 8.0 or later, make sure that you
9+
create the database with charset latin1 as shown in the example below:
10+
11+
```
12+
create database <db_name> character set latin1;
13+
```
14+
715
---
816

917
## Datasource configurations

0 commit comments

Comments
 (0)