“WEB”的版本间的差异
来自Alex's wiki
(→Shell及服务器) |
(→Shell及服务器) |
||
第15行: | 第15行: | ||
[[高并发情况下Linux服务器内核配置]]<br /> | [[高并发情况下Linux服务器内核配置]]<br /> | ||
− | [http://www.duoluodeyu.com/1114.html Linux配置使用SSH Key登录并禁用root密码登录]< | + | [http://www.duoluodeyu.com/1114.html Linux配置使用SSH Key登录并禁用root密码登录] |
+ | <source lang=c> | ||
+ | #1、生成密钥 | ||
+ | ssh-keygen -t rsa | ||
+ | #2、使用以下命令将公钥导入到VPS: | ||
+ | cat /root/.ssh/id_rsa.pub >> /root/.ssh/authorized_keys | ||
+ | #3、修改SSH的配置文件/etc/ssh/sshd_config : | ||
+ | vi /etc/ssh/sshd_config | ||
+ | :s/#RSAAuthentication yes/RSAAuthentication yes/g | ||
+ | :s/#PubkeyAuthentication yes/PubkeyAuthentication yes/g | ||
+ | :s/#AuthorizedKeysFile/AuthorizedKeysFile/g | ||
+ | #保存后重启 | ||
+ | service sshd restart | ||
+ | |||
+ | </source> | ||
+ | |||
[http://www.centoscn.com/CentOS/help/2015/0206/4640.html CentOS修改主机名方法大全]<br /> | [http://www.centoscn.com/CentOS/help/2015/0206/4640.html CentOS修改主机名方法大全]<br /> | ||
2017年4月11日 (二) 10:39的版本
目录
服务器
架构
Shell及服务器
Shell脚本容易写错的几个语法
高并发情况下Linux服务器内核配置
#1、生成密钥 ssh-keygen -t rsa #2、使用以下命令将公钥导入到VPS: cat /root/.ssh/id_rsa.pub >> /root/.ssh/authorized_keys #3、修改SSH的配置文件/etc/ssh/sshd_config : vi /etc/ssh/sshd_config :s/#RSAAuthentication yes/RSAAuthentication yes/g :s/#PubkeyAuthentication yes/PubkeyAuthentication yes/g :s/#AuthorizedKeysFile/AuthorizedKeysFile/g #保存后重启 service sshd restart
vi /etc/ssh/sshd_config s/#ClientAliveCountMax 3/ClientAliveCountMax 86400/g /etc/rc.d/init.d/sshd restart echo "export TMOUT=1000000" >> .bash_profile
shell中if条件字符串、数字比对, [] 和 [[]] 区别
前端
工具
数据公式:www.mathjax.org