Skip to content

Commit 2ba8273

Browse files
authored
Update README.md
1 parent 300829a commit 2ba8273

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

README.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,16 @@ sudo chmod -R ugo+rw storage/logs
7575
sudo chmod -R ugo+rw bootstrap/cache
7676
```
7777

78-
# if you can see this error above when you access phpmyadmin you can use solutions this below
78+
# Gunakan solusi dibawah ini jika kalian melihat error seperti dibawah ini saat mengakses phpmyadmin
7979

80-
fix fix mysqli::real_connect(): (HY000/1130): Host 'ip address' is not allowed to connect to this MySQL server
80+
mysqli::real_connect(): (HY000/1130): Host 'ip address' is not allowed to connect to this MySQL server
8181

82-
you need adjust with config docker-compose.yml for use this bellow solutions: <br>
82+
anda bisa menyesuaikan config docker-compose.yml dengan solusi dibawah ini <br>
8383
contaner name for mysql : mysql <br>
8484
mysql_root_password : temp123 <br>
8585
mysq user : root <br>
8686
mysql user password : temp123 <br>
87-
this error happened because config mysql_root_password, user database anda password user database cannot regiestered on user host mysql.
87+
error ini terjadi pada saat docker-compose up --build , proses pendaftaran data mysql tidak terjadi, seperti pendaftaran mysql_root_password, user host mysql baik itu username dan passwordnya.
8888
<br>
8989

9090
* Access terminal mysql container
@@ -115,3 +115,14 @@ CREATE USER 'root'@'%' IDENTIFIED BY 'your_password_root';
115115
```bash
116116
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
117117
```
118+
* exit mysql and terminal container
119+
* down docker-compose
120+
* stop docker service
121+
```bash
122+
sudo service docker stop
123+
```
124+
* start docker service
125+
```bash
126+
sudo service docker start
127+
```
128+
* up docker-compose

0 commit comments

Comments
 (0)