How To Enable SSH Login From OS X Yosemite 10.10.5 to macOS Ventura 13.3.1

Author: , May 19th, 2023

I was unable to login from my old iMac running Yosemite to my new iMac running Ventura using RSA keys. It turns out that RSA key support was disabled in Ventura. To correct the problem, I added the following two lines to the bottom of BOTH /etc/ssh/ssh_config and /etc/ssh/sshd_config on the Ventura side:

Be […]

How To Login To A Docker Container Shell

Author: , February 15th, 2021

First, get the container ID using docker ps:

Now run docker exec -it {ContainerID} /bin/bash:

You can make a simple shell script to ease typing a bit:

How To Fix MySQL Remote Login Errors

Author: , August 25th, 2016

In this case I had done a restore from a MySQL 5.1 server to a MySQL 5.6 server. That was not too smart, because it broke the mysql database table structures and prevented me from logging in remotely. Local login worked both via the socket and TCP. mysql -u root -p -h remoteHostName Enter password: […]

How To Add a Login/Logout Menu Link in WordPress

Author: , January 19th, 2015

Simple Link

Complex Menu Link

How To Enable the sa Login for MS SQL Server on AWS AMI

Author: , January 8th, 2013

To change security authentication mode: In SQL Server Management Studio Object Explorer, right-click the server, and then click Properties. On the Security page, under Server authentication, select the new server authentication mode (Windows and SQL auth), and then click OK. In the SQL Server Management Studio dialog box, click OK to acknowledge the requirement to […]

FreeBSD Crossover Serial Login

Author: , August 23rd, 2010

Connect the two servers using a serial null modem cable. This example assumes the first serial port (i.e. uart0 or COM1:). On host you want to login TO: Edit /etc/ttys to add the following: [code]ttyu0 "/usr/libexec/getty std.9600" vt100 on insecure[/code] Then run “kill -HUP 1” as root. On host you want to login FROM: Add […]