Step By Step installation Guideline.
Apr
25
2012
Step By Step installation Guideline.
2012-04-25 12:13:19 & Posted by : Mr Developer Developer
First, you have to create your database to contain your website data. Before you start please Check : |
|
|
If any of these are not, install these first. |
For MySQL - Install MySQL as appropriate for your operating system. There are a lot of documents on how to do this all over the internet and I'm not going to reiterate all of that here. SECURITY TIP: Be sure to set a root password Start your MySQL Log in your MySQL database - For *nix operating systems and Windows from the command line: mysql -u root -p & hit enter It will ask for the root password you set earlier. You should get a prompt that says "mysql>" Type in "CREATE DATABASE ;" Do NOT include the < and >! Hit enter. SECURITY TIP: Do not use the default database or user names or passwords included in the installation the document Now you will need to make a user. Type in "CREATE USER 'myuser'@'localhost/hostname' IDENTIFIED BY 'mysecurepassword';" & Hit enter |
|
Comments