
Oorspronkelijk geplaatst door
alexweblog
ik heb het probleem dat port 110 blocked is en dit topic gaat over het toevoegen van een ssl certificaat
Excuus dan.
Ik zit op me werk dus kan niet alles 1 2 3 lezen
Ik weet dat het als je geen SSL gebruikt dat je poort 110 gebruikt.
Met SSL gebruik je een andere poort.
Ik denk dus dat je poort geblocked is omdat je SSL aanstaat.
Neus even in je configs rond van directadmin.
Ik weet bijna zeker dat het daar wel staat.
Heb het namelijk zelf wel draaien op poort 110 zonder SSL.
Kan alleen nu niet via SSH connecten om het op te zoeken voorje.
--
EDIT :
5) Another way to free up FileDescriptors (FDs) is to disable ssl on any domain that does not require it.
A quck way to check is to type:
Code:
ls -la /home/*/domains/*/private_html/index.html
quickly scan the list for any index.html that isn't betwen 200-300 bytes in size. Any that are not in that range will have been edited and the user is probably using ssl, so take note of those usernames and domains. Now, the quick way to do a mass SSL shutoff for domains is to type:
Code:
perl -pi -e 's/ssl=ON/ssl=OFF/' /usr/local/directadmin/data/users/*/domains/*.conf
Then turn ssl=ON back on for any users who need it. Note that this is an end user level setting, so they have the ability to turn it back on themselves via Domain Setup. Then type the action=rewrite&value=httpd command as mentioned in step 2 above.
What this does is reduced the number of FD's by 50%. Since many people rarely use SSL, disabling it reduceds half of all virtualhosts, since all domains, subdomains, etc.. have 2 virtualhosts each with ssl, and only 1 each without ssl.