Hi,
I got my first Linode (640MB) on Friday night.
Installed a CentOS 5 distro.
Then I installed the following:
mod_ssl
mysql-server
php
php-mysql
ntp (to keep server clock in sync)
with yum install. Updated everything with yum update.
Then I downloaded, unzipped and installed Wordpress.
Then edited config.php with
Code:
define('DB_NAME', 'wordpress1'); // The name of the database
define('DB_USER', 'wpuser1'); // Your MySQL username
define('DB_PASSWORD', 'wppassword1'); // ...and password
Then with mysql, did the following:
Code:
mysql> CREATE DATABASE wordpress1;
mysql> GRANT ALL PRIVILEGES ON wordpress1.* TO "wpuser1"@"localhost"
mysql> IDENTIFIED BY "wppassword1";
mysql> FLUSH PRIVILEGES;
However, when I try to access wp-admin/install.php in my browser to install/configure it, all I get is an Apache page.
Also, I'm trying to figure how to install and configure the server for FTP. What I'm looking for is the easiest way to do it and/or a walk-through guide, as I'm very much a noob with console and Linux in general. I'll be the only accessing the FTP.
Thanks in advance for your help.