关于linux:Linux基础总结运维

37次阅读

共计 613 个字符,预计需要花费 2 分钟才能阅读完成。

服务器装置 SSH 服务

装置 SSH

yum install openssh-server

启动 SSH

service sshd start

设置开机运行

chkconfig sshd on

如果你装置的是最小服务器零碎默认 已装置 ssh 服务。
带界面化的 Linux 零碎没有装置 ssh。
客户端装置 ssh 工具
Windows 零碎下 能够装置 Xshell,Putty,secureCRT
Linux 平台装置客户端软件

yum install openssh-clients

ssh 命令 链接服务器
ssh root@192.168.3.12

SSH config 解说
Config 寄存在 ~/.ssh/config
config 配置语法

SSH config 语法关键字

Host 别名
HostName 主机名
Port 端口
User 用户名
IdentityFile 密匙文件的门路

touch config 创立一个 config 文件

避免 22 端口
通过 vim /etc/ssh/sshd_config
凋谢 Port 10000 端口本人改就行。
Service sshd restart

Linux 常用命令
软件操作命令
软件包管理器:yum
装置软件:yum install xxx
卸载软件:yum remove xxx
搜寻软件:yum serach xxx
清理缓存:yum clean packages
列出已装置:yum list
软件包信息:yum info xxx

服务器硬件资源和磁盘操作
查看内存:free -m
硬盘:df -h
负载:w/top top 命令通过 q 退出

正文完
 0