Client-server refers to architecture in which two or more computers are connected together over a network to send and receive requests between one another. In this project, two computers(severs) were made to connect to each other using MySQL which is a Database Management System. The following steps were taken in setting up a client-server architecture using MySQL:
In order to demonstrate a basic client-server architecture using MySQL, two virtual servers(ubuntu 20.04 LTS) were launched in AWS cloud and are designated as;
- Server A – ‘mysql-server’
- Server B – ‘mysql-client’
Updating and upgrading the two servers with the command:
$ sudo apt update
$ sudo apt upgrade
For the remote host(server B) to be able to connect to server B, mysql-server is configured to allow connections from server B:
- Editing the mysqld.cnf file:
$ sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf
- Changing the value of bind-address from ‘127.0.0.1’ to ‘0.0.0.0’:
- Ensuring that mysql is listening to ‘0.0.0.0’ on port 3306:
$ sudo netstat -plunt | grep mysqld
- Opening up that port on the firewall to allow traffic through:
$ sudo ufw allow mysql
To be able to connect to server A from server B a remote user is created and granted privileges:
- Activating mysql shell:
$ sudo mysql
- Creating a database:
mysql> CREATE DATABASE todoapp;
- Creating a remote user with server B’s ip_address:
mysql> CREATE USER 'remote_somex'@'3.88.230.169' IDENTIFIED BY 'password12345';
- Granting the remote user full access to the database:
mysql> GRANT ALL PRIVILEGES ON todoapp.* TO 'remote_somex'@'3.88.230.169';
- Lastly, flushing the privileges so that MySQL will begin to use them:
mysql> FLUSH PRIVILEGES;
- Exit:
mysql> exit