Page 1 of 1

How to properly disable dns and email in vestacp

Posted: Fri Aug 16, 2019 4:25 am
by s4if
Hi, I am new to vestacp, currently I install vestacp in cheapest DigitalOcean droplet. I only intend to use vestacp as web and database server, but I unknowingly install all features in vestacp. How to disable dns and email in vestacp as I don't need them and they eat my resources?

Re: How to properly disable dns and email in vestacp

Posted: Fri Aug 16, 2019 7:54 am
by grayfolk
s4if wrote:
Fri Aug 16, 2019 4:25 am
Hi, I am new to vestacp, currently I install vestacp in cheapest DigitalOcean droplet. I only intend to use vestacp as web and database server, but I unknowingly install all features in vestacp. How to disable dns and email in vestacp as I don't need them and they eat my resources?

Code: Select all

$ service bind stop && systemctl disable bind

Code: Select all

$ service exim stop && systemctl disable exim
Check first what email services you use: exim/dovecot/spamassassin/clamav - you should to call this for each service.

Re: How to properly disable dns and email in vestacp

Posted: Sat Aug 17, 2019 10:04 am
by s4if
thank you, it works.