1 apt-get install
rsh-server
rsh-client
rsh-redone-server
xinetd
chkconfig
2 /etc/hosts
10.60.36.78 node1 server
10.60.36.90 node2
10.60.36.83 node3
/etc/hosts.equiv
node1
node2
node3
/root/.rhosts
node1 root
node2 root
node3 root
/etc/securetty
加入rsh rlogin rexec
3 ubuntu下原来没有一下这些文件,新建
/etc/xinetd.d/rsh
# default: on
# descrīption: The rshd server is the server for the rcmd(3) routine and, \
# consequently, for the rsh(1) program. The server provides \
# remote execution facilities with authentication based on \
# privileged port numbers from trusted hosts.
service shell
{
disable = no
socket_type = stream
wait = no
user = root
log_on_success += USERID
log_on_failure += USERID
server = /usr/sbin/in.rshd
}
/etc/xinetd.d/rlogin
# default: on
# descrīption: rlogind is the server for the rlogin(1) program. The server \
# provides a remote login facility with authentication based on \
# privileged port numbers from trusted hosts.
service login
{
disable = no
socket_type = stream
wait = no
user = root
log_on_success += USERID
log_on_failure += USERID
server = /usr/sbin/in.rlogind
}
/etc/xinetd.d/rexec
# default: off
# descrīption: Rexecd is the server for the rexec(3) routine. The server \
# provides remote execution facilities with authentication based \
# on user names and passwords.
service exec
{
disable = no
socket_type = stream
wait = no
user = root
log_on_success += USERID
log_on_failure += USERID
server = /usr/sbin/in.rexecd
}
4 重启xinetd
/etc/init.d/xinetd restart
分享到:
相关推荐
3. 启动并设置RSH服务为开机启动: ```bash sudo systemctl start rsh-server sudo systemctl enable rsh-server ``` ### 安全隐患与替代方案 由于RSH服务缺乏加密和身份验证,它存在严重的安全风险。因此,...
在本文中,我们讨论了如何在 Ubuntu 操作系统中安装和配置 SSH 服务,包括安装 SSH 服务器端和客户端、配置 SSH 服务器端口号、启动 SSH 服务、登录 SSH 和断开连接等。同时,我们还讨论了使用 `scp` 和 `rsync` ...
在Ubuntu系统中,SSH服务是通过openssh-server软件包提供的,而openssh-client则用于作为SSH客户端进行连接。在新安装的Ubuntu系统中,SSH可能并未预装,因此需要手动安装。以下是关于在Ubuntu上安装和配置SSH服务...
标题中的“Ubuntu安装ssh服务和客户端”指的是在Ubuntu操作系统中安装Secure Shell (SSH)服务器和客户端软件的过程。SSH是一种网络协议,用于安全地远程登录到另一台计算机,进行文件传输和其他管理任务。在这个主题...
在Ubuntu/Debian上,可以使用`systemctl start rsync`启动服务,而在CentOS/RHEL上,可能需要使用`/etc/init.d/rsync start`。 确保在启动前已正确配置了rsyncd.conf,并且设置了适当的防火墙规则,允许rsync的默认...
这样设置后,xinetd 服务会在启动时自动开启这三个服务。 最后,重启 `xinetd` 服务以应用更改: 1. 进入 `/etc/init.d` 目录:`cd /etc/init.d` 2. 重启 xinetd:`./xinetd restart` 完成以上步骤后,LoadRunner ...
- **RSH/Rlogin服务**:配置RSH和Rlogin服务以实现远程命令执行。 - **Sendmail服务**:设置Sendmail服务以发送邮件通知。 #### 十、结束语 - **总结**:回顾全文内容,强调注意事项。 - **后续学习资源**:推荐...
2. **配置SSH**:默认情况下,安装完成后SSH服务会自动启动。配置文件位于`/etc/ssh/sshd_config`,你可以在此更改端口、密码策略、公钥认证等设置。 3. **生成SSH密钥对**:为了增强安全性,建议使用SSH密钥对进行...
rsync 服务器架设比较简单,可能我们安装好 rsync 后,并没有发现配置文件,以及 rsync 服务器启动程序,因为每个管理员可能对 rsync 用途不一样,所以一般的发行版只是安装好软件就完事了,让管理员来根据自己的...
2. **环境变量**:正确设置`OMPI_MCA_btl_base_warn_component_unused`和`OMPI_MCA_plm_rsh_agent`等环境变量,以避免启动时的警告或错误。 3. **并行编译**:`mpicc`、`mpic++`等编译器前端用于构建MPI程序,它们...
- 修改 `/etc/init.d/ssh` 启动脚本为 `/etc/init.d/sshd`,确保服务可以在系统启动时自动运行。 #### 四、配置注意事项 - **配置文件**:OpenSSH 的主要配置文件位于 `/etc/ssh/sshd_config`。此文件包含了 sshd...
- **ntsysv**:设置系统服务启动选项。 - **setup**:系统配置工具。 #### 用户管理命令 - **who**:显示当前登录的用户信息。 - **w**:显示活跃用户的详细信息。 - **finger**:查询用户的注册信息。 - **passwd*...
- **rlogin**, **telnet**, **rsh**: 远程登录工具,允许用户在远程主机上执行命令。 - **rcp**: 在本地和远程主机之间复制文件。 - **mail**, **sendmail**, **mailq**: 邮件发送和接收命令。 - **ftp**: 文件传输...