New on LowEndTalk? Please Register and read our Community Rules.
Help me!

in Help
Hello i am trying to install this on my vps https://github.com/mojeda/ServerStatus
But i don't understand how to create the database and import it.
This discussion has been closed.
Comments
http://lmgtfy.com/?q=how+to+create+and+import+a+mysql+database+ssh
mysql -u root -p -e "create database dbname";
mysql -u root -p dbname < sqlfile.sql
Thanks!
@Nekki Please close this thread.
For reference I like BigDump which is a PHP script that will incrementally insert an SQL file so it won't run into size/memory/time limits. The fact it's PHP means you can use it on shared hosting too. Top script if you don't have SSH access.