码迷,mamicode.com
首页 >  
搜索关键字:keygen    ( 1775个结果
Mac下安装WebStrom
1、去官网http://www.jetbrains.com/webstorm/下载最新版本的软件。2、打开dmg文件,将里面的程序copy到Applications文件下。3、启动/Applications/WebStrom.app4、打开terminal,执行keygen,得到LICENSE。(注...
分类:Web程序   时间:2014-09-29 03:15:56    阅读次数:8982
运维小东西:每天备份sql到远程服务器上
首先两台服务器可以无密码登录(这个方式比较简单,当然安全系数会降低)#ssh-keygen -t rsa#生成密钥发送给远程服务器上#ssh-copy-id ~/root/id_rsa.pub user@host 这样ssh的时候就不用输入密码了。对于crontab这种定时自动运行的任务来说还...
分类:数据库   时间:2014-09-24 22:33:57    阅读次数:326
远程操作服务器和本地处理
1. 自动登陆 #ssh-keygen #cat id_dsa.pub >> ~/.ssh/authorized_keys 2。 设置环境变量 export PATH=/usr/jdk/bin:\$PATH:/usr/jdk/jre/bin 3. ?运行脚本 bash new.sh eg:ssh -q -o StrictHostKeychecking=no ...
分类:其他好文   时间:2014-09-23 18:05:55    阅读次数:195
[Linux] 如何禁止使用口令只允许使用密钥建立 SSH 连接
1. 创建 SSH KEY 使用 ssh-keygen 生成一个密钥对,并且将公钥注册到服务器的 $HOME/.ssh/authorized_keys 文件。2. 确保启用SSH 公钥认证功能 查看 /etc/ssh/sshd_config 文件,确保以下两条为 yes:RSAAuthentic.....
分类:系统相关   时间:2014-09-22 11:50:32    阅读次数:261
[Linux] 在 Linux CLI 使用 ssh-keygen 生成 RSA 密钥
RSA 是一种公钥加密算法,在 1977 年由麻省理工学院的Ron Rivest, Adi Shamir, Leonard Adleman 三人一起提出,因此该算法命名以三人姓氏首字母组合而成。 SSH 是 Secure Shell 缩写,是建立在应用层和传输层基础上的安全协议,为计算机上运行...
分类:系统相关   时间:2014-09-21 14:29:00    阅读次数:296
读《HTML5与CSS3权威指南(上册)》笔记
第二章 1.内容类型:“text/html”。DOCTYPE声明:。指定字符编码: 2.不允许写结束标记的元素有:area,base,br,col,command,embed,hr,img,input,keygen,link,meta,param,source,track,wbr 可以省略结...
分类:Web程序   时间:2014-09-19 13:29:15    阅读次数:303
windows git ssh key for github
第一:检查.ssh是否存在(ls -al ~/.ssh)$ ls -al ~/.sshLists the files in your .ssh directory, if they exist第二:产生新的SSH key(ssh-keygen -t rsa -C "your_email@exampl...
分类:Windows程序   时间:2014-09-19 11:37:35    阅读次数:317
Heroku使用
先要生成一个公钥,使用命令:$ ssh-keygen -t rsaGenerating public/private rsa key pair.Enter file in which to save the key (/home/user/.ssh/id_rsa):Enter passphrase ...
分类:其他好文   时间:2014-09-18 14:43:33    阅读次数:183
Encrypting Goldengate Password
OGG参数文件中需要指定用户密码,这时候我们需要加密该密码: [oracle@ogg1 ogg]$ ls -l keygen -rwxr-x— 1 oracle oinstall 327034 Apr 23  2012 keygen [oracle@ogg1 ogg]$ ./keygen 128 4 0xD209104B9A93E35D9AD03F7E313C5F56 ...
分类:其他好文   时间:2014-09-17 10:16:32    阅读次数:190
linux ssh 不用密码自动登录的几种方法
1. 自动ssh/scp方法==A为本地主机(即用于控制其他主机的机器) ;B为远程主机(即被控制的机器Server), 假如ip为192.168.60.110;A和B的系统都是Linux在A上运行命令:# ssh-keygen -t rsa (连续三次回车,即在本地生成了公钥和私钥,不设置密码)#...
分类:系统相关   时间:2014-09-16 15:29:30    阅读次数:270
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!