What do I need on my VPS?

Status
Not open for further replies.
9 comments
you need some kind of control panel. cpanel or webmin are my suggestions. Thats if you have linux running on your vps. If you have windows then you need a wamp server.
 
If you install Kloxo, everything gets installed along with it (PHP, MySQL, PMA, etc etc)
If you're going for Webmin (another free panel) you'll need to do some manual installations.
 
Just find a tutorial on how to install LAMP.

I suggest you install Webmin and then install LAMP manually.

Great together ;)

regards,
Ryan
 
This is should be working For Linux CentOS
Code:
yum install mysql mysql-server
chkconfig --levels 235 mysqld on
/etc/init.d/mysqld start
mysqladmin -u root password gr8tech2o4=8i2=4 
mysqladmin -h hostname.yourdomain.com -u root password yourpassword ==> be careful about changing 
-------------------------------------------------------------------------------------------------------------------
     yum install httpd
chkconfig --levels 235 httpd on
/etc/init.d/httpd start
-------------------------------------------------------------------------------------------------------------------
yum install php
yum install php-mysql
    /etc/init.d/httpd restart

That what i'v done to install my VPS and don't forget chown /srv/www/html/ to apache:apache so your uploaded files will work correctly
 
Status
Not open for further replies.
Back
Top