Add node power information and author details

This commit is contained in:
Sietse Jonker
2024-02-13 16:24:02 +01:00
parent a9190c093b
commit 4cc7c2fa8b
3 changed files with 10 additions and 2 deletions

View File

@@ -34,4 +34,6 @@ We have to create a user for the database. This is done by running the following
GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
```
Replace username with the username you want to use and password with the password you want to use. This will create a user with all privileges on all databases. If you want to create a user with less privileges you can change the ALL PRIVILEGES to the privileges you want to give the user. We chose to give the user all privileges to make it easy for us to use the database.
Replace username with the username you want to use and password with the password you want to use. This will create a user with all privileges on all databases. If you want to create a user with less privileges you can change the ALL PRIVILEGES to the privileges you want to give the user. We chose to give the user all privileges to make it easy for us to use the database.
**Written by Sietse**

View File

@@ -18,3 +18,5 @@ $ sudo apt install php
```
After this we could use phpmyadmin, access the database we've created and start using it.
**Written by Sietse**