Just to be clear, for assignment #4 you do not have to have MariaDB client running on your laptop. And you certainly do not (and should not) have an instance of the MariaDB DBMS server running on your laptop!
Instead, you should follow this two-step process to poke around and inspect the galactic database:
- Log on to the cpsc.umw.edu server, however you do that (PuTTy, ssh, etc.)
- On the cpsc.umw.edu command line, type:
cpsc$ mariadb -u theSecretUsername -ptheSecretPassword
and voila, you’re in. (Substitute the actual username and the actual password for those placeholders, of course. And don’t forget: there is no space between the “-p” and the password!)
The only MariaDB-ish installation required for assignment #4 is the mariadb Python package, which you can install using pip:
yourLaptop$ pip install mariadb
This is required not to simply explore the database, but rather for your Python code to access it.
Send email with any questions!


