@@ -10,16 +10,16 @@ MySQL Community Server compressed TAR or ZIP version (http://dev.mysql.com/downl
10103 . Download MySQL Community Server
11114 . Change variable "MYSQL_PATH" in src/mysqlserver/Utils.java to point to your MySQL Server path
1212
13- ## Aplications
14- ### Aplication 1
13+ ## Applications
14+ ### Application 1
1515The Application1 program implements an application that:
1616- Initialize server instance (let's call it S1)
1717- Start S1 in a separate thread
1818- Connect to S1 (Tip: connect to the "mysql" database, the "test" database is no longer provided)
1919- Fetch the server version by executing "SELECT VERSION()" and print it to stdout
2020- Stop S1
2121
22- ### Aplication 2
22+ ### Application 2
2323The Application2 program implements an application that:
2424- Initialize a server instance (S1)
2525- Start S1 in a separate thread as replication master, passing the required additional options
@@ -33,7 +33,7 @@ The Application2 program implements an application that:
3333- Stop S2 and S1
3434
3535## Outputs
36- ### Aplication 1
36+ ### Application 1
3737``` console
3838[/home/wfranchi/MySQL/mysql-8.0.11/bin/mysqld, --no-defaults, --initialize-insecure, --basedir=/home/wfranchi/MySQL/mysql-8.0.11, --datadir=/home/wfranchi/eclipse-oxygen-JEE/workspace/sample-java-mysql-replication/bdApp1/data]
3939Server instance initialized!
@@ -50,7 +50,7 @@ MySQL Version: 8.0.11
5050S1 stopped!
5151```
5252
53- ### Aplication 2
53+ ### Application 2
5454``` console
5555[/home/wfranchi/MySQL/mysql-8.0.11/bin/mysqld, --no-defaults, --initialize-insecure, --basedir=/home/wfranchi/MySQL/mysql-8.0.11, --datadir=/home/wfranchi/eclipse-oxygen-JEE/workspace/sample-java-mysql-replication/bdApp2Master/data]
5656Server instance initialized!
0 commit comments