How To Force Key Repeat in MacOSX 10.10 Yosemite
erics, March 19th, 2015 defaults write -g ApplePressAndHoldEnabled -bool false
|
erics, March 19th, 2015 defaults write -g ApplePressAndHoldEnabled -bool false
erics, April 15th, 2014 https://github.com/continuent/continuent-puppet-tungsten As user root: vi /root/install.pp
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$clusterData = { "myServiceNameHere" => { "topology" => "master-slave", "master" => "myDBHostName1", "slaves" => "myDBHostName2", }, } class { 'tungsten' : installSSHKeys => true, installMysql => true, clusterData => $clusterData, replicatorRepo => "stable", installReplicatorSoftware => true, } |
yum install puppet mkdir -p /etc/puppet/modules puppet module install continuent/tungsten puppet apply /root/install.pp
erics, October 11th, 2011 Create the server key from your original private key by removing the pass-phase:
|
1 |
openssl rsa -in key.pem -out server.key |
These are the files that NetSol provided me in the download .zip file (domain name changed to protect the innocent):
|
1 2 3 4 |
AddTrustExternalCARoot.crt NetworkSolutionsAddTrustEVServerCA.crt NetworkSolutionsEVServerCA.crt WWW.YOURDOMAIN.COM.crt |
Network Solutions does not make it easy on you – in the install docs they tell you there is yet […]
erics, August 3rd, 2011 First use SSH to login as the ec2-user:
|
1 2 3 4 |
ssh -i AWSKeyPair.pem ec2-user@{NewHostName} % sudo su - # |
erics@zeus:/Users/erics # ssh -i foo.pem ec2-user@thehost.foo Last login: Tue Nov 19 20:28:19 2013 from foo.bar __| __|_ ) _| ( / Amazon Linux AMI ___|\___|___| https://aws.amazon.com/amazon-linux-ami/2013.09-release-notes/ No packages needed for security; 7 packages available Run “sudo yum update” to apply all updates. [ec2-user@xyz ~]$ sudo su […]
erics, October 19th, 2010 I was getting this error:
|
1 |
Failed to save SSL options : The SSL private key file /etc/webmin/miniserv.pem does not exist or does not contain a PEM format key |
Edit the file /etc/webmin/miniserv.conf and add:
|
1 2 |
ssl=1 ssl_redirect=1 |
erics, September 27th, 2009 % ssh-keygen -x -f id_dsa > ssh2.pubkey