Gentoo Installation - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: Documentation (/forum-45.html) +--- Thread: Gentoo Installation (/thread-2627.html) |
RE: Gentoo Installation - kevin666 - 03-14-2008 06:24 PM Zothos Wrote:I have currently ispcp running on a gentoo maschine and you need only this package, try it out. i did try that package and it did not work, i looked through all of the portage and could not find the perl one. i kept getting an error that it was missing in one of the daemon scripts, i think it was the bandwidth statistics cant remember. but i had to install it manually to get it to work. i do not remember doing it when i last installed it so it has to be something to do with newer packages but i do remember specificly there being a perl-net-libidn package RE: Gentoo Installation - pgentoo - 08-10-2008 06:32 AM Kevin666, I've done several gentoo installs recently with pre-rc6 code, and have documented all the steps. I've updated your howto with a bunch more info and formatting, to get it inline with RC6. Please feel free to touch it up if you see anything missing... RE: Gentoo Installation - kevin666 - 08-10-2008 09:28 AM pgentoo Wrote:Kevin666, it looks great! i recently got rid of my server that i was running ispcp on. i did not need the server anymore for what i used it for. RE: Gentoo Installation - Kev - 10-22-2008 08:59 AM Hi, here is another Kevin using isp-control with gentoo First: nice howto so far, I'm just trying to install RC6 on my openVZ gentoo machine.(inside of a guest) I found a package for the pearl lib, do you mean: Code: dev-perl/Net-LibIDN [ Masked ] edit: I've just found another thing, in the article is: Code: Apache doesn't by default put 'index.php' in the DirectoryIndex list, so we need to modify /etc/apache2/conf.d/00_default_settings.conf to change: Code: Apache doesn't by default put 'index.php' in the DirectoryIndex list, so we need to modify /etc/apache2/modules.d/00_default_settings.conf to change: there is written: Code: edit /etc/proftpd/proftpd.conf comment out line 68. and uncomment everything after and including line 118 and also change 119 to ON Other problems: admin.myhost will not show the login interface, instead of that it prints out the index.php file. It seems that the fcgid will not send the php file to the php interpreter. Any idea why? Do I need to enable something that is not mentioned in the howto to get fastcgi php support working? Thanks for any response! Kev RE: Gentoo Installation - pgentoo - 10-24-2008 03:54 AM (10-22-2008 08:59 AM)Kev Wrote: Hi, here is another Kevin using isp-control with gentoo Kevin, Thanks for the feedback. I got the first round of edits done a few days back, but forgot to post back to this thread. As for the 2nd round, make sure you have php compiled with fastcgi support, make sure your conf.d/apache2 file has -D FCGID in the options, make sure you have mod_fcgid installed, restart apache. If that doesn't work still, then there is likely something wrong with the module configuration, or with the vhost. Here is my current 20_mod_fcgid.conf (maybe i need to update the howto). Code: <IfDefine FCGID> Here is the key section from my 00_master.conf Code: ... Post back and let me know if that helps, if not then i'll take a closer look at any changes i've made in those two apache conf files. Thanks again, Pgentoo RE: Gentoo Installation - Kev - 10-28-2008 08:44 AM Hi Pgentoo, really big thanks for you help! I didn't install the package mod_fcgid. It is logically that I need it, but I fogot it. Maybe it would help, when it's mentioned in the HowTo. Now that part seems to work. Next problem: As far as I start postfix the networking will be very curios. I can't "ping anySite.org" but "nslookup anySite.org" will work and "ping [TheIpOfAnySite.org]" will work, too. But the name-resolution of any program won't work anymore (like ping). Only nslookup is still working. After "/etc/init.d/postfix stop" all will work again. Any idea? It's an openVZ virtual server. Do you think it's something openvz-related? Thanks for any idea! RE: Gentoo Installation - pgentoo - 10-28-2008 08:59 AM It breaks when you start postfix, or when you start named? I could see how starting/stopping named could do this, but postfix doesn't make much sense to me... - pgentoo RE: Gentoo Installation - Kev - 10-28-2008 09:12 AM Yes, it doesn't make sense to me, too. /etc/init.d/postfix start -> network broken /etc/init.d/postfix stop -> network is working /etc/init.d/postfix start -> network broken again ..... I don't know much about postfix, so I have no idea here. The only thing I've changed is the one in your howto: "the ”-” to an “n” in the chroot column for the two “smtp” entries in /etc/postfix/master.conf." edit: I've killed each process, one after another and the network was still broken (only!) with this processes running (every other except init and my bash was killed): Code: 26005 ? Ss 0:00 /usr/lib/postfix/master after: kill 26005 the network was working normally. EDIT2: A very big sorry, the problem has nothing to do with postfix or isp-control. The reason for it was my openvz ressource limit configuration. The limit "132096" for "othersockbuf" was to low, postfix seems to use all of it. That's the reason why no other programm can use more ressources (e.g. ping domain.tld). This raises the question why postfix is eating so much "othersockbuf"? The value was the standard value, so you can assume that everyone will have this problem with openVZ. After: "vzctl set VM_ID --othersockbuf $((2*132096)):$((2*336896)) --save" it seems to be solved. Now I'm very happy that I can start testing isp-control now Thanks a lot for helping me and giving the right impulses! EDIT3: It would also be very helpful if you mention in the howto, that you need to emerge awstats if you want to use it RE: Gentoo Installation - biologist - 03-15-2009 11:49 PM To whom it may concern [:-)]: There is a flag missing in the gentoo-install-documentation. The flag is called "filter" and is needed by the function "filter_var" which has been used in ispCP V1.0. RE: Gentoo Installation - pgentoo - 03-16-2009 08:43 AM You mean APACHE2_MODULES right? |