Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/f-lsq/online-banking-db
https://github.com/f-lsq/online-banking-db
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/f-lsq/online-banking-db
- Owner: f-lsq
- Created: 2024-03-26T06:29:41.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-28T03:37:40.000Z (9 months ago)
- Last Synced: 2024-03-28T20:10:38.542Z (9 months ago)
- Language: Handlebars
- Size: 1.61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
To start mysql, in the terminal, type in `mysql -u root`
# Create a new database user
In the MySQL CLI:
```
CREATE USER 'ahkow'@'localhost' IDENTIFIED BY 'rotiprata123';
``````
GRANT ALL PRIVILEGES on sakila.* TO 'ahkow'@'localhost' WITH GRANT OPTION;
```
**Note:** Replace *sakila* with the name of the database you want the user to have access to
```
FLUSH PRIVILEGES;
```