error

Proxmox: “ perl: warning: Setting locale failed.“

If you run Proxmox and run into perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LANG = „en_US.utf8“ are supported and installed on your system. perl: warning: Falling back to the standard locale („C“). here’s your solution: export LANGUAGE=en_US.UTF-8 export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 locale-gen […]

Proxmox: “ perl: warning: Setting locale failed.“ Read More »

Magento Database import: Errno 150

In case your Magento database import fails with errno 150, here’s a quick solution: Put the following statements on top of your import script: SET SQL_MODE=“NO_AUTO_VALUE_ON_ZERO“; SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT; SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS; SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION; SET NAMES utf8; SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE=’NO_AUTO_VALUE_ON_ZERO‘; SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0; Put the following statements at the end of your import script: SET SQL_MODE=@OLD_SQL_MODE;

Magento Database import: Errno 150 Read More »

Unable to negotiate with [IP] port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1

If you ever encounter this error, add the line KexAlgorithms=+diffie-hellman-group1-sha1 at the end of your /etc/ssh/ssh_config file. Bonus: One-Liner for the impatient sudo echo „KexAlgorithms=+diffie-hellman-group1-sha1“ >> /etc/ssh/ssh_config  

Unable to negotiate with [IP] port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1 Read More »

Nach oben scrollen