34. ubuntu02 노드에서 인서트한 데이터 결과를 ubuntu03 노드에서 다음과 같이 확인합니다.
root@ubuntu03:~# mysql -u root -p -e ‘SELECT * FROM playground.equipment;’ Enter password: 패스워드 입력 Enter +—-+——-+——-+——–+ | id | type | quant | color | +—-+——-+——-+——–+ | 1 | slide | 2 | blue | | 2 | swing | 10 | yellow | +—-+——-+——-+——–+
35. 이번에도 Playground 데이터베이스의 Equipment 테이블에 데이터를 인서트합니다.
root@ubuntu03:~# mysql -u root -p -e ‘INSERT INTO playground.equipment (type, quant, color) VALUES (“seesaw”, 3, “green”);’ Enter password: 패스워드 입력 Enter