此文档内容:在CentOS7系统上搭建高性能计算HPC集群。
-
至少两台服务器或者电脑(没有的,使用VMware虚拟机代替也行。此文档为了操作方便,使用VMware虚拟机代替做示范。)
-
CentOS7操作系统软件镜像
-
torque+maui 作业调度系统软件
| 操作比较简单,不详细说了,参考下面命令: | |
| HOME=/home/wxh #对应用户账号家目录,此处以/home/wxh为例 | |
| ssh-keygen -t dsa -N "" -f "$HOME/.ssh/id_dsa" | |
| cp -r $HOME/.ssh/id_dsa.pub $HOME/.ssh/authorized_keys | |
| echo "StrictHostKeyChecking no" >> $HOME/.ssh/config | |
| chmod 600 $HOME/.ssh/config | |
| chmod 600 $HOME/.ssh/authorized_keys |
| # nfs服务端 | |
| ## 1、安装软件包 | |
| yum -y install nfs-utils | |
| ## 2、启动服务 | |
| systemctl start rpcbind | |
| systemctl start nfs | |
| systemctl enable rpcbind | |
| systemctl enable nfs | |
The C programming Language[C程序设计语言] https://github.com/wangxianhe/books/blob/master/The%20C%20Programming%20Language%20%E4%B8%AD%E6%96%87%E7%89%88.pdf
深入理解计算机系统
UNIX环境高级编程(中文第三版)