Installation Instructions
To install GVPS, please download and install all applications necessary in the following installation guides...
Downloading & Installing 'GVPS'
- Download the GVPS files here
- Extract the files to the desired location
- Done...simple! Now to install the database, please continue to the next section.
Downloading & Installing 'MySQL'
MySQL is an Open Source Software relational database management system that uses SQL. This application and installation process are needed for the GVPS to work.
- Download the "240db.zip" database definition file here
- Extract the "240db.sql" file
- If you already have MySQL 5.0 installed, then skip to number 5
- Go to the MySQL download site, and download the version of MySQL for your Operating System
- Install the application, and keep all default settings.
- Open a command line (Start->Run, and type "cmd" then 'Enter')
- Think of a password, then type: mysqladmin -u root password "yourPasswordHere"
- Then connect to the mysql server (you'll be prompted for the password you've just entered) by typing: "mysql -u root -p"
- Enter: "CREATE DATABASE 240db;"
- Enter: "GRANT ALL PRIVILEGES ON 240db.* TO 'user'@'%' IDENTIFIED BY 'pass' WITH GRANT OPTION;"
- Enter: "exit;"
- Navigate to the folder in which 240db.sql file lives using the 'cd' command
- Enter: "mysql -u username -p 240db < 240db.sql"
- And you're done!