惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Privacy & Cybersecurity Law Blog
V
V2EX
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Register - Security
The Register - Security
MongoDB | Blog
MongoDB | Blog
P
Privacy International News Feed
The Last Watchdog
The Last Watchdog
Security Archives - TechRepublic
Security Archives - TechRepublic
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
K
Kaspersky official blog
S
Secure Thoughts
T
Tenable Blog
Security Latest
Security Latest
The Cloudflare Blog
S
Security @ Cisco Blogs
H
Heimdal Security Blog
aimingoo的专栏
aimingoo的专栏
TaoSecurity Blog
TaoSecurity Blog
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
Schneier on Security
Schneier on Security
Webroot Blog
Webroot Blog
G
Google Developers Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Scott Helme
Scott Helme
IT之家
IT之家
Latest news
Latest news
The Hacker News
The Hacker News
C
Check Point Blog
T
The Exploit Database - CXSecurity.com
H
Hackread – Cybersecurity News, Data Breaches, AI and More
腾讯CDC
C
CERT Recently Published Vulnerability Notes
NISL@THU
NISL@THU
N
News | PayPal Newsroom
Forbes - Security
Forbes - Security
P
Palo Alto Networks Blog
S
Security Affairs
S
Securelist
Google Online Security Blog
Google Online Security Blog
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
C
Cybersecurity and Infrastructure Security Agency CISA
A
About on SuperTechFans

博客园 - homegis

关于开源GIS和商业GIS的讨论 B树索引学习 cordova 开发 ios app 简要流程 cordova 开发 android app 简要流程 3D开源推荐:3DWebExplorer 3D开源推荐:全球卫星地图 Esri-Satellite-Map 空间网络分析开源环境的安装方法 Computing Aggregate Queries in Raster Image Databases Using Pre-Aggregated Data Cheetah:A High Performance, Custom Data Warehouse on Top of MapReduce 【转】 Ubuntu内核编译 Fuzzy C-Means Clustering【转】 【转】什么是数据驱动编程 DISPLAY connection problem when using ENVI/IDL in X Terminal LINUX 上 ENVI 4.7 安装步骤,IDL 调用方式 图论——网络最大流和最小截 [转]多表连接的三种方式详解 HASH JOIN MERGE JOIN NESTED LOOP VS2005 调用 IDL7.1 方法 [转] 如何下载Google Earth中的卫星影像 【转】Envi调用MODIS Reprojection Tool(MRT)对MODIS产品进行批处理拼接、重投影、裁切 - homegis
Gfarm 安装(已测试)
homegis · 2012-05-01 · via 博客园 - homegis

Gfarm Installation

check the process currently running:

$netstat –tuanp

if the software has been installed, remove them:

$sudo apt-get purge XXX

refer to the normal installation guide, INSTALL.en to install dependent libraries.

Gfarm 2.5 for example:

$sudo apt-get install libssl-dev libldap2-dev libq-dev libfuse-dev postgresql postgresql-client

$./configure --with-postgresql=/usr --with-openssl=directory --prefix=/opt/gfarm --enable-xmlattr

$make

#make install

remember that: every node should be edit /etc/hosts file to specify hostname to accordingly IP address.

Config MeteData Server Node

Check the PostgreSQL is still running:

$netstat –tuanp (default port is 5432)

If yes, stop it:

# /etc/init.d/postgresql stop

config metedataserver:

# config-gfarm –p 5432 (-t : check configuration before do it truly)

Create shared secret key for Admin account in home directory(this case:/home/dodo/):

$ gfkey –f –p 31536000

Create an account for communication between server node and file node in security:

#adduser –gecos ‘Gfarm gfsd’ _gfarmfs --force-badname

(password is null)

Create a shared secret key for _gfarmfs user in home directory:

# su _gfarmfs

$ gfkey –f –p 31536000

Config File Node

Create an account for communication between server node and file node in security.

#adduser –gecos ‘Gfarm gfsd’ _gfarmfs --force-badname

(password is must)

Copy the shared secret keys for Admin account from MD Node to the same home directory in SD Node.

Copy the shared secret keys for _ gfarmfs account from MD Node to the same home directory in SD Node.

Copy the file etc/gfarm2.conf from MD Node to the same directory in SD Node.

$config-gfsd (-t for check the configuration before doing truely)

Using admin_user of GFarm on Server Node to register File Node

$su dodo

$ gfhost -c -a i386-centos3.8-linux -p 600 -n 2 kent

Then change to root user and setup gfsd service

#/etc/init.d/gfsd start

Client Node Installation and Configuration

Refer to the Installation Guide in Gfram2fs, INSTALL, and install it.

Create Directory on Every File Node and Mount It:

$mkdir CloudFS

$gfarm2fs CloudFS

 Run GFarm after system restart

MetaData Node

Stop postgresql:

/etc/init.d/postgresql stop

run gfarm database:

/etc/init.d/gfarm-pgsql start

run gfmd:

/etc/init.d/gfmd start

File Node:

          run gfsd:

          /etc/init.d/gfsd start

auto setup when booting:

    give up passwd for sudo: $sudo visudo

    and add a line: dodo ALL=NOPASSWD:ALL

    open /etc/rc.local to add following lines:$sudo nano /etc/rc.local

    MD node:

    sudo /etc/init.d/postgresql stop

    sudo /etc/init.d/gfarm-pgsql start

    sudo /etc/init.d/gfmd start

    sudo /opt/gfarm2fs/bin/gfarm2fs CloudFS

    FD node

    sudo /etc/init.d/gfsd start

    sudo /opt/gfarm2fs/bin/gfarm2fs CloudFS