Book Image

Internet of Things Programming with JavaScript

Book Image

Internet of Things Programming with JavaScript

Overview of this book

The Internet of Things is taking the tech world by storm, and JavaScript is at its helm. This book will get you to grips with this exciting new technology. Where do Node.js, HTML5 and Windows 10 IoT Core come in with JavaScript and IoT? Why Raspberry Pi Zero rather than Arduino? How do you configure and build an IoT network from scratch? All your IoT JavaScript questions are answered in this book.
Table of Contents (15 chapters)
Internet of Things Programming with JavaScript
Credits
About the Author
www.packtpub.com
Customer Feedback
Preface

Configuring MySQL database server


In this section, you will learn how to configure MySQL server in order to create a database and integrate everything in your dashboard, for recording data in a database.

Installing MySQL

Our Raspberry Pi Zero is being configured like a web server. In this section, we will install MySQL database server with the following command, so we can receive connections from clients, display data stored in a database, and use queries in SQL:

sudo apt-get install mysql-server

In the middle of the process it will ask you for the password of the root user:

After the installation is complete, connect to MySQL and type the following command:

mysql -u root -p

Type the following command:

show databases;

Here we can see databases of the system that are now installed in the server:

Installing MySQL driver for PHP

It's important to install our driver to communicate PHP5 with MySQL database server, to do that we will need MySQL driver for PHP to access MySQL database, execute this...