Several services not working on new install [ resolved ] - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: System Setup & Installation (/forum-32.html) +--- Thread: Several services not working on new install [ resolved ] (/thread-10766.html) |
Several services not working on new install [ resolved ] - pstanbra - 05-24-2010 09:43 PM Just installed ispCP on new server. (lucid) ispcp1.0.5 Install went fine. In server status: localhost (Port 9876) ispCP Daemon UP localhost (Port 10024) AMaVis DOWN my.ip.add.ress (Port 53) DNS UP my.ip.add.ress (Port 21) FTP DOWN my.ip.add.ress (Port 80) HTTP UP my.ip.add.ress (Port 143) IMAP UP localhost (Port 12525) POLICYD-WEIGHT UP my.ip.add.ress (Port 110) POP3 UP my.ip.add.ress (Port 995) POP3-SSL DOWN localhost (Port 60000) POSTGREY DOWN my.ip.add.ress (Port 25) SMTP UP my.ip.add.ress (Port 465) SMTP-SSL UP localhost (Port 783) SPAMASSASSIN DOWN my.ip.add.ress (Port 22) SSH UP my.ip.add.ress (Port 23) TELNET Thought i'd try a manual start on ftp: root@websrv1:~# /etc/init.d/proftpd start * Starting ftp server proftpd - Fatal: unknown configuration directive 'SQLNamedQuery' on line 139 of '/etc/proftpd/proftpd.conf' [fail] root@websrv1:~# ALSO Control Panel seems fine but when i click system tools, I get Deprecated: Function split() is deprecated in /var/www/ispcp/gui/include/phpsysinfo/common_functions.php on line 169 Deprecated: Function split() is deprecated in /var/www/ispcp/gui/include/phpsysinfo/class.Linux.inc.php on line 116 RE: Several services not working on new install - joximu - 05-25-2010 11:35 PM Hi the proftp-config: tell us more about you OS. the php 5.3 errors: ispcp is not ready to be run on php 5.3, so change the php.ini settings to not show errors, just log them (if needed). /J I think you use a new ubuntu and the makefile in ispcp 1.0.5 is not ready for this. so you need to replace the proftpd.conf (which is based on the proftpd1.3.conf) with something which is based on proftpd1.3.interpid.conf.... the mysql modules are not loaded otherwise... /J RE: Several services not working on new install - pstanbra - 05-26-2010 12:50 AM (05-25-2010 11:35 PM)joximu Wrote: Hi Yes i'm using UBUNTU 10.04 LTS 2.6.32-22-server x86_64 I've created a new install script with one of the other admins which installs fine. No idea where to start with the ftp thing... Any idea why spamassassin and amavis and the others are not loading. UPDATE - FTP FIXED BUT NEED TO TEST - SERVICE SHOWING OKAY The code below was added to the proftpd.conf file as it was not present. The 2 lines in red do not need to be inserted as there is a definition already in my conf file further down. Line numbers not needed - reference only. # Loading required modules 118 <IfModule !mod_sql.c> 119 LoadModule mod_sql.c 120 AuthOrder mod_sql.c 121 </IfModule> 122 <IfModule !mod_sql_mysql.c> 123 LoadModule mod_sql_mysql.c 124 </IfModule> 125 <IfModule !mod_quotatab.c> 126 LoadModule mod_quotatab.c 127 </IfModule> 128 <IfModule !mod_quotatab_sql.c> 129 LoadModule mod_quotatab_sql.c 130 </IfModule> Still AMAVIS - SPAMASSASSIN - POP3-SSL are showing RED in server status RE: Several services not working on new install - joximu - 05-26-2010 05:07 PM amavis and spamassassin are not part of ispcp. and pop3ssl neither (well - the ports can be checked but pop3ssl is handled by the OS configuration) - maybe you need to install courier-pop-ssl /J RE: Several services not working on new install - pstanbra - 05-26-2010 05:31 PM (05-26-2010 05:07 PM)joximu Wrote: amavis and spamassassin are not part of ispcp. thanks. I think it would be a good idea to put that in the install notes as I found nothing about this. May save lots of time for people in the future . Thanks RE: Several services not working on new install - joximu - 05-26-2010 05:36 PM Quote:http://isp-control.net/documentation/pl:howto:security:make_ispcp_more_secure#ssl_for_mailservice_courier /J |