Category Archives: Linux
Categories
Archive
broken pipe am Mac verhindern
~/.ssh/config Host * ServerAliveInterval 150 ServerAliveCountMax 15 HostkeyAlgorithms +ssh-rsa PubkeyAcceptedAlgorithms +ssh-rsa p.s. Hostkey ist Bonus für alte Server >> oder serverseitig -> sshd_config: TCPKeepAlive yes ClientAliveInterval 120 ClientAliveCountMax 15
ssh no matching host key type found
ssh root@server-ip -oHostKeyAlgorithms=+ssh-dss oder dauerhaft sudo vi /etc/ssh/ssh_config.d/server-ip.conf Host 10.xxx.xxx.xxx HostKeyAlgorithms +ssh-dss KexAlgorithms +diffie-hellman-group1-sha1 Ciphers +aes128-cbc
MySQL Slave Status
SHOW SLAVE STATUS\G;
MySQL Slave hängt Duplicate Entry bei autoincrement
falsche Zeilen löschen und —> autoincrement value setzen!
shell history
PROMPT_COMMAND=“history -a“ in .bashrc warum auch immer das nicht standard ist :-//
Mysql Binlog’s
Runzeliger Lasttest
eigene externe ip per shell
x-frame-option multiple domains wp
BEST WAY (in wp-config.php): if (!strstr($_SERVER[‚REQUEST_URI‘], ‚XXX-content‚)){header(‚X-Frame-Options: SAMEORIGIN‘);} apache.conf / bzw. seite-available im directory part: (klappt nur bei realen FILES/DIRs nicht bei umleitungen!!! <IfModule mod_headers.c># Allow some urls, block all others; whitelisting<LocationMatch ^((?!(firstUrlAllowed|secondUrlAllowed)).)*$>Header always append X-Frame-Options SAMEORIGIN # Block any… Read more ›