proFTPd problem

I’ve just setup interworx but when i’m trying to connect to the ftp server i get this:
[root@esxi2 log]# ftp localhost
Connected to localhost.localdomain.
421 Service not available, remote server has closed connection
ftp>

but proftpd is running :
4134 ? Ss 0:00 proftpd: (accepting connections)

I don’t understand the problem:p

Thanks
Dimitris

Found the problem

There was a problem with my.cnf (utf8 as charset) and when proftpd tried to connect hits an error.

Damn.

I have same problem after installing clean CentOS 5.4 and interworx 4.1.0

What need to be done to correct proftp issue ?

Best Regards
Emil

I Don’t remember what i’ve done back then , but please copy paste my.cnf. I’ve remember that i change something there

that my default file from installation , i add last line for test but don’t help
/usr/local/interworx/etc/my.cnf


[mysqld]
socket             = /home/interworx/var/run/mysql.sock
pid-file           = /home/interworx/var/run/mysqld.pid
datadir            = /home/interworx/var/lib/mysql
language           = /home/interworx/var/share/mysql/english
port               = 2306
server-id          = 2306
max_connect_errors = 1024
max_allowed_packet = 128M
skip-innodb

[safe_mysqld]
err-log            = /home/interworx/var/log/mysqld.log
ledir              = /home/interworx/bin
mysqld             = iworx-db
log-warnings

[mysqladmin]
socket             = /home/interworx/var/run/mysql.sock

[mysql]
socket             = /home/interworx/var/run/mysql.sock
#default-character-set=utf8

Emil

under [mysqld]
add

default-character-set=utf8
character-set-server=utf8
collation-server=utf8_general_ci

then
service mysqld restart
service proftpd restart

Please add all this at /etc/my.cnf

thanks I will try it

Emil