to uninstall ehcp from your server/computer,
just remove files at /var/www/ehcp
and files at /var/lib/mysql/ehcp
you have to be root to be able to do this.
its done !
to uninstall ehcp from your server/computer,
just remove files at /var/www/ehcp
and files at /var/lib/mysql/ehcp
you have to be root to be able to do this.
its done !
Re: Uninstall of ehcp
HiI have tried uninstalling ehcp using the above methodHowever when I go to my IP address in a browser I still see the following pageAny ideas.....please be gentle a real noob to linux / unixRunning on Hardy HeronThanks for any adviseEasy Hosting Control Panel for Ubuntu and alikes..This is default ehcp-apache index file.click here for EHCP CONTROL PANEL HOME on your serverif you see this page instead of what you expect, you probably did not set up your domain on this server. Please log into your ehcp panel and set up your domain..or ask your admin/provider to do so...www.ehcp.net HomeAdditional info about ehcpTroubleshoot your ehcp installation..(not fully implemented yet..)ehcp test server 1 provided by 1paket.comehcp test server 2 provided by www.touchvps.eu
Re: Uninstall of ehcp
not sure what happened to the above - trying again
Hi
I have tried uninstalling ehcp using the above method
However when I go to my IP address in a browser I still see the following page
Any ideas.....please be gentle a real noob to linux / unix
Running on Hardy Heron
Thanks for any advise
Easy Hosting Control Panel for Ubuntu and alikes..
This is default ehcp-apache index file.
click here for EHCP CONTROL PANEL HOME on your server
if you see this page instead of what you expect, you probably did not set up your domain on this server. Please log into your ehcp panel and set up your domain..or ask your admin/provider to do so...
www.ehcp.net Home
Additional info about ehcp
Troubleshoot your ehcp installation..(not fully implemented yet..)
ehcp test server 1 provided by 1paket.com
ehcp test server 2 provided by www.touchvps.eu
Re: Uninstall of ehcp
if you want to just stop running ehcp,
then it is enaugh to stop daemon,
you may issue command:
/etc/init.d/ehcp stop
this will stop running ehcp daemon, which php runs it.
/etc/init.d/apache2 stop
will stop apache webserver
if you want to remove totally ehcp, then,
there is no automatic way,
you need to do two thins:
1- remove directory that you installed ehcp, for example,
rm -rvf /var/www/vhosts/ehcp
2- delete ehcp database from your mysql server,
get into mysql console,
mysql
drop database ehcp
Ehcp also installs some server programs such as apache, mysql, postfix, etc.
you actually dont need to delete them, as they may be needed later on your system,
if you still want to delete all of them, then issue this command on your command line:
sudo apt-get remove php5 php5-imap php5-mysql php5-cli postfix postfix-mysql postfix-doc mysql-client mysql-server courier-authdaemon courier-authlib-mysql courier-pop courier-pop-ssl courier-imap courier-imap-ssl libsasl2 libsasl2-modules libsasl2-modules-sql sasl2-bin libpam-mysql openssl phpmyadmin pure-ftpd-mysql mysql-server apache2 bind9 mysql-client
this will remove anything that ehcp installs...
see you..