Search results

  1. mizar

    Debian Jessie Upgrade - Apache Configuration Template Error

    Seems mpm-envent not installed or not yet configured. Try to disable it now, and enable it after installation completed: # a2dismod mpm_event Module mpm_event disabled. To activate the new configuration, you need to run: service apache2 restart # a2enmod mpm_prefork Considering conflict...
  2. mizar

    Debian Jessie Upgrade - Apache Configuration Template Error

    Hello, Only one package: sw-nginx. But could you also post errors, it might be helpful for other people, who look for solution by googling errors
  3. mizar

    Debian Jessie Upgrade - Apache Configuration Template Error

    You might want to purge apache packages, and then install again: # dpkg -P --force-all apache2 apache2-bin apache2-data apache2-mpm-event apache2-mpm-prefork apache2-utils (Reading database ... 153962 files and directories currently installed.) Removing apache2-mpm-event (2.4.10-10+deb8u3)...
  4. mizar

    Debian Jessie Upgrade - Apache Configuration Template Error

    Hello, I don't see errors in logs. Now all is ok?
  5. mizar

    Debian Jessie Upgrade - Apache Configuration Template Error

    Hello, Could you show errors from /var/log/apache2/error.log or from output of /etc/init.d/apache2 restart? If you have errors like Failed to get D-Bus connection: Unknown error -1 you must complete switch to systemd system: https://wiki.debian.org/systemd#Configuring_as_default BTW: this...
  6. mizar

    Upgrade to 12.5 failed

    Hello, You can install libarchive from 'epel' repository: # wget -q https://dl.fedoraproject.org/pub/epel/epel-release-latest-5.noarch.rpm # rpm -Uvh epel-release-latest-5.noarch.rpm warning: epel-release-latest-5.noarch.rpm: Header V3 DSA signature: NOKEY, key ID 217521f6 Preparing...
  7. mizar

    Plesk 12.5 with MariaDB 10

    You should change start/stop command for MySQL server in watchdog: 1. Stop monitoring 2. Click in MySQL in watchdog services list 3. Replace start command to /usr/bin/systemctl start mysql, and stop to /usr/bin/systemctl stop mysql 4. Click OK, and start monitoring
  8. mizar

    Resolved [PPP-18000] Plesk 12.5.30 - Easy way to replace MariaDB 5.5 with 10 ?

    Also check this thread about Plesk 12.5 on CentOS7 + MariaDB 10 http://talk.plesk.com/threads/plesk-12-5-with-mariadb-10.334703/
  9. mizar

    Multiple versions php: sphinx module php version mismatch

    Yeah, this is a source of problem - pecl command appends bin_dir to PATH, and then execute phpize, so system one executed. You need install devel files for Plesk php 5.5 by yum install plesk-php55-devel and then run /opt/plesk/php/5.5/pecl install sphinx again
  10. mizar

    Multiple versions php: sphinx module php version mismatch

    It seems pecl executes wrong phpize binary (from system php), could you show /opt/plesk/php/5.5/bin/pecl config-show
  11. mizar

    Multiple versions php: sphinx module php version mismatch

    Hello, I did make && make install after configure (update post). Could you send an output of /opt/plesk/php/5.5/bin/pecl install sphinx command (may be in PM) and php.init entry with extension load?
  12. mizar

    12.5.30 - Watchdog sends reports saying apache is old ?

    If you don't have sites with php-fpm, this service will not start, and switching on minitoring does nothing
  13. mizar

    Multiple versions php: sphinx module php version mismatch

    Hello, /opt/plesk/php/5.5/bin/pecl install sphinx doesn't register extesion into php.ini, you should add it manually: # echo 'extension=sphinx.so' > /opt/plesk/php/5.5/etc/php.d/sphinx.ini Note, I succsessfully compiled this extension and load it into php 5.5: # cd libsphinxclient &&...
  14. mizar

    12.5.30 - Watchdog sends reports saying apache is old ?

    Regarding watchdog starting issue on server reboot - you can fix it by manually registering in systemd for autostart: # systemctl enable wdcollect.service monit.service
  15. mizar

    Plesk 12.5 RTM - Cannot connect to FTP

    Glad to help :)
  16. mizar

    Plesk 12.5 RTM - Cannot connect to FTP

    Hello, Yep, it seems problem in atomic proftpd package on centos7 - i'll check and write bug report about it. I recommend you to manually remove psa-proftpd package and then install from Plesk repo: # rpm -e --nodeps psa-proftpd # plesk installer --select-release-current...
  17. mizar

    Plesk 12.5 RTM - Cannot connect to FTP

    Hello, I cannot reproduce proftpd probls, and see explicitly set ScoreboardFile to /var/run/proftd.scoreboard on fresh installation of CentOS 7.1 # grep Scoreb /etc/proftpd.conf ScoreboardFile /var/run/proftpd.scoreboard # rpm -qf /etc/proftpd.conf...
  18. mizar

    Plesk 12.5 with MariaDB 10

    Hello, It seems psa.service require mariadb.service, and it absense confuses systemd. As workaround you can edit your plesk systemd unit (/lib/systemd/system/psa.service) in this way: remove mariadb.service from Requires= and add Wants=mariadb.service mysql.service and also add mariadb.service...
  19. mizar

    Resolved plesk component installer hangs at Running rpm_check_debug

    BTW, do you see something suspicious in /var/log/fail2ban.log ?
Back
Top