Skip to content

Commit

Permalink
Update Project 20 - MIGRATION TO THE СLOUD WITH CONTAINERIZATION USIN…
Browse files Browse the repository at this point in the history
…G DOCKER.md
  • Loading branch information
proteusxlr authored Jun 5, 2024
1 parent 86ab7f7 commit b47de16
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ docker-ce:
![pix5](https://user-images.githubusercontent.com/74002629/208448222-d846880f-222c-4ee0-aa50-c44ed8f282f5.PNG)
6. Create an SQL script that to create a user that will connect remotely. Create a file and name it ****create_user.sql**** and add code in the file:
```
CREATE USER 'suleman'@'%' IDENTIFIED BY 'sulemanpw';
GRANT ALL PRIVILEGES ON *.* TO 'suleman'@'%';
CREATE USER 'suleman'@'%' IDENTIFIED BY 'proteusxlrpw';
GRANT ALL PRIVILEGES ON *.* TO 'proteusxlr'@'%';
CREATE DATABASE toolingdb;
```
Expand All @@ -61,8 +61,8 @@ The script also creates a database for the Tooling web application.
sudo vi .env
MYSQL_IP=mysqlserverhost
MYSQL_USER=suleman
MYSQL_PASS=sulemanpw
MYSQL_USER=proteusxlr
MYSQL_PASS=proteusxlrpw
MYSQL_DBNAME=toolingdb
```
![pix7](https://user-images.githubusercontent.com/74002629/208449253-8f74bc1a-ddbc-488d-beca-8d80cfa75d0f.PNG)
Expand Down

0 comments on commit b47de16

Please sign in to comment.