Search Results

0
votes

Best way to store a database password in a startup script / config file?

You can bake a symmetric encryption key into your binary, and have that binary read an encrypted username/password from a file on disk when it starts up. However, this is not really much …
0
votes

To run a .sql -file in MySQL

Have you actually created the database 'personal' and the table 'posts'? You might want to try something like: mysql -h localhost -u <user> -p<password> -D pers …