Posts by kess
-
-
-
In effect the last lines of my proftpd.conf file looks like that:
Code- # SSL configuration<IfModule mod_tls.c> TLSEngine on TLSRequired off TLSLog /var/log/proftpd/ftp_ssl.log TLSProtocol TLSv1 TLSOptions NoCertRequest NoSessionReuseRequired TLSRSACertificateFile /etc/imscp/imscp_services.pem TLSRSACertificateKeyFile /etc/imscp/imscp_services.pem TLSVerifyClient off</IfModule>
but I have some problems while connecting through TLS...If I set in tls.conf something like:
Code- #
- # Proftpd sample configuration for FTPS connections.
- #
- # Note that FTPS impose some limitations in NAT traversing.
- # See http://www.castaglia.org/proftpd/doc/contrib/ProFTPD-mini-HOWTO-TLS.html
- # for more information.
- #
- <IfModule mod_tls.c>
- TLSEngine on
- #TLSLog /var/log/proftpd/tls.log
- #TLSProtocol SSLv23
- #
- # Server SSL certificate. You can generate a self-signed certificate using
- # a command like:
- #
- # openssl req -x509 -newkey rsa:1024 \
- # -keyout /etc/ssl/private/proftpd.key -out /etc/ssl/certs/proftpd.crt \
- # -nodes -days 365
- #
- # The proftpd.key file must be readable by root only. The other file can be
- # readable by anyone.
- #
- # chmod 0600 /etc/ssl/private/proftpd.key
- # chmod 0640 /etc/ssl/private/proftpd.key
- #
- ...
- ...
- ...
it works correctly.
That's strange, because it's declared before... I need to investigate deeper into that...
Anyway thank you for replying to the prev message.
Bye Kess. -
-
-
-
Login Name MUSS sven@meinedomain.de sein !
-
-
Hello guys,
this procedure has been done multiple times, but unfortunately this time without luck.Source and destination servers are identical, so Jessie x64 running in a Hyper-V environment.
I copied from old server:
/etc/imscp
/var/www
/var/mail
and all the databases of course...on the new server I started: "perl imscp-autoinstall -dar" using version 1.3.1 (like source server) and then also with 1.3.3
the log says:
Code- [Wed Sep 28 22:09:06 2016] [debug] iMSCP::EventManager::trigger: Triggering afterSetupPreInstallPackages event
- [Wed Sep 28 22:09:06 2016] [debug] iMSCP::Execute::executeNoWait: su - imscp -s /bin/sh -c 'php -d date.timezone=UTC -d allow_url_fopen=1 -d suhosin.executor.include.whitelist=phar composer.phar --no-ansi -n -d=/var/local/imscp/packages show imscp/ajaxplorer 0.2.0.*@dev'
- [Wed Sep 28 22:09:06 2016] [debug] iMSCP::Execute::getExitCode: Command exited with value: 1
- [Wed Sep 28 22:09:06 2016] [error] iMSCP::Composer::_checkRequirements: Package imscp/ajaxplorer (0.2.0.*@dev) not found. Please retry without the '-a' option.
- [Wed Sep 28 22:09:06 2016] [debug] iMSCP::Execute::execute: /usr/bin/dialog --title 'i-MSCP Installer Dialog' --help-label Help --colors --no-shadow --yes-label Yes --insecure --no-label No --exit-label Abort --cancel-label Back --ok-label Ok --backtitle 'i-MSCP - internet Multi Server Control Panel (1.3.3)' --msgbox '\Z1[ERROR]\Zn
- Error while performing step:
- Checking composer package requirements
- Error was:
- \Z1iMSCP::Composer::_checkRequirements: Package imscp/ajaxplorer (0.2.0.*@dev) not found. Please retry without the '\''-a'\'' option.\Zn
- Please have a look at http://i-mscp.net/forum if you need help.
- ' 55 210
- [Wed Sep 28 22:09:17 2016] [debug] iMSCP::Execute::execute: /usr/bin/dialog --title 'i-MSCP Installer Dialog' --help-label Help --colors --no-shadow --yes-label Yes --insecure --no-label No --exit-label Abort --cancel-label Back --ok-label Ok --backtitle 'i-MSCP - internet Multi Server Control Panel (1.3.3)' --msgbox '\Z1[ERROR]\Zn
- Error while performing step:
- Packages pre-installation...
- Error was:
- \Z1iMSCP::Composer::_checkRequirements: Package imscp/ajaxplorer (0.2.0.*@dev) not found. Please retry without the '\''-a'\'' option.\Zn
- Please have a look at http://i-mscp.net/forum if you need help.
- ' 55 210
- [Wed Sep 28 22:09:18 2016] [debug] iMSCP::Execute::execute: /usr/bin/dialog --title 'i-MSCP Installer Dialog' --help-label Help --colors --no-shadow --yes-label Yes --insecure --no-label No --exit-label Abort --cancel-label Back --ok-label Ok --backtitle 'i-MSCP - internet Multi Server Control Panel (1.3.3)' --msgbox '\Z1[ERROR]\Zn
- Error while performing step:
- Processing setup tasks
- Error was:
- \Z1iMSCP::Composer::_checkRequirements: Package imscp/ajaxplorer (0.2.0.*@dev) not found. Please retry without the '\''-a'\'' option.\Zn
- Please have a look at http://i-mscp.net/forum if you need help.
- ' 55 210
- [Wed Sep 28 22:09:19 2016] [error] autoinstaller::Functions::install: An error occurred while performing installation steps
I also tried something different from ajaxplorer, same results...
Options:
mysql 5.5, php-fpm, dovecot, proftpd, no SSL
sources.list has not been touched with exotic mods, just original...
networking works, dns resolution works...Am i perhaps missing something ?
If you need any further informations, please let me know.
Thank you, bye Kess. -
Just a little correction about what you wrote there:
The contents of the file /etc/php/conf.d/ioncube.ini should be:For PHP 5.3
For PHP 5.4
For PHP 5.5
For PHP 5.6
For PHP 7.0
The comment you find there, is not just a simple comment. It tells the order the module should be loaded into PHP. Ioncube must be the first module in the load chain, so that's the reason I put 00 in as priority.
Hope it helps.P.S: In my systems I didn't create /etc/php/conf.d/ioncube.ini but I've created /etc/php/mods-available/ioncube.ini
Then I ran the command "php5enmod ioncube" and everything has been setted up correctly.