Comentarios en: Clusters Beowulf/PVM https://www.estrellateyarde.org Goodbye Microsoft, Hello Linux! Sun, 08 May 2016 10:19:09 +0000 hourly 1 http://wordpress.org/?v=3.5.1 Por: Carlos https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-108812 Carlos Thu, 25 Feb 2016 04:49:57 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-108812 libpvm [pid2608] /tmp/pvmd.1000: No such file or directory
libpvm [pid2608]: Console: Can’t start pvmd

Me sale este error, verifique mi archivo hosts y esta el nombre de la computadora bien, que mas podria ser?

]]>
Por: Qver https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-771 Qver Sun, 24 Apr 2011 23:32:08 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-771 SOLUCION DE ALGUNOS ERRORES

Error cuando:
libpvm [pid13828] /tmp/pvmd.0: No such file or directory
libpvm [pid13828]: Console: Can’t start pvmd

Solucion:
Verificar el archivo /etc/hosts en cada nodo
o si lo editaste regresalo a como estaba con anterioridad

Error cuando:
pvm> spawn -> hello
spawn -> hello
[1]
0 successful
No such file

Solucion: Verificar que esten los ejecutables y que esten bien definidas las variables de entorno en el archivo .bashrc
Solucion2: intenta nuevamente el spawn, suele pasar que aveces no los ejecuta

Error cuando:

“Master Host IP Address is Loopback!”

Solucion: Verifica nuevamente el archivo /etc/hosts que el nombre del host no apunte a 127.0.0.1 unicamente algo como “127.0.0.1 localhost.localdomain localhost”

Solucion 2: usa el comando #:pvm -n(ip del master)
ej: #pvm -n192.168.1.1

Podran ahora agregar hosts con el comando “add slave” y ya no dira que es loopback

]]>
Por: Guille https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-770 Guille Sun, 07 Mar 2010 11:52:05 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-770 Buenas
Ya se que es muy tarde para hacer este comentario pero ayer encontré esta página navegando…
Está genial el tutorial. Para PAco y Tamara (aunque ya sea tarde) pero en general para los que tengan el problema con el mensaje “Terminado” al añadir un host los pasos a seguir (por lo menos los que a mi me sirvieron) son los siguientes:
– En el fichero /etc/hosts en vez de dejar la direccion de la máquina por defecto (127.0.0.1) cambiadla por la IP que tiene la máquina en la red
– Si con este paso sigue sin funcionar puede ser un problema con rsh.

]]>
Por: alguien a quien le funciono (loretito) https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-769 alguien a quien le funciono (loretito) Sun, 16 Aug 2009 18:30:40 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-769 errno=10 => tienes que llamar el pvm como sudo [=B]
errno=22 => me parce que se me fue cuando cambie el localhost por el nombre del maestro y (importante) reinicie

fe de erratas: primero hacer el paso de de “/etc/hosts” y luego el “add slave”y antes de usar scp usuario @ esclavo, es decir primero

127.0.0.1 localhost
192.168.0.200 master
192.168.0.201 slave1
192.168.0.202 slave2
192.168.0.203 slave3

i despues pvm> add slavel

Suerte a todos

—————-

static char rcsid[] =
“$Id: hello.c,v 1.2 1997/07/09 13:24:44 pvmsrc Exp $”;

/*
* PVM version 3.4: Parallel Virtual Machine System
* University of Tennessee, Knoxville TN.
* Oak Ridge National Laboratory, Oak Ridge TN.
* Emory University, Atlanta GA.
* Authors: J. J. Dongarra, G. E. Fagg, M. Fischer
* G. A. Geist, J. A. Kohl, R. J. Manchek, P. Mucci,
* P. M. Papadopoulos, S. L. Scott, and V. S. Sunderam
* (C) 1997 All Rights Reserved
*
* NOTICE
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted
* provided that the above copyright notice appear in all copies and
* that both the copyright notice and this permission notice appear in
* supporting documentation.
*
* Neither the Institutions (Emory University, Oak Ridge National
* Laboratory, and University of Tennessee) nor the Authors make any
* representations about the suitability of this software for any
* purpose. This software is provided “as is” without express or
* implied warranty.
*
* PVM version 3 was funded in part by the U.S. Department of Energy,
* the National Science Foundation and the State of Tennessee.
*/

#include
#include “pvm3.h”

main()
{
int cc, tid;
char buf[100];

printf(“Soy la tarea t%xn”, pvm_mytid());

cc = pvm_spawn(“hello_other”, (char**)0, 0, “”, 1, &tid);

if (cc == 1) {
cc = pvm_recv(-1, -1);
pvm_bufinfo(cc, (int*)0, (int*)0, &tid);
pvm_upkstr(buf);
printf(” respuesta de la tarea t%x: %sn”, tid, buf);

} else
printf(“No se ha podido lanzar hello_othern”);

pvm_exit();
}

—————-

y esta sería la equivalente versión “ligeramente traducida” de hello_other.c:

—————-

static char rcsid[] =
“$Id: hello_other.c,v 1.2 1997/07/09 13:24:45 pvmsrc Exp $”;

/*
* PVM version 3.4: Parallel Virtual Machine System
* University of Tennessee, Knoxville TN.
* Oak Ridge National Laboratory, Oak Ridge TN.
* Emory University, Atlanta GA.
* Authors: J. J. Dongarra, G. E. Fagg, M. Fischer
* G. A. Geist, J. A. Kohl, R. J. Manchek, P. Mucci,
* P. M. Papadopoulos, S. L. Scott, and V. S. Sunderam
* (C) 1997 All Rights Reserved
*
* NOTICE
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted
* provided that the above copyright notice appear in all copies and
* that both the copyright notice and this permission notice appear in
* supporting documentation.
*
* Neither the Institutions (Emory University, Oak Ridge National
* Laboratory, and University of Tennessee) nor the Authors make any
* representations about the suitability of this software for any
* purpose. This software is provided “as is” without express or
* implied warranty.
*
* PVM version 3 was funded in part by the U.S. Department of Energy,
* the National Science Foundation and the State of Tennessee.
*/

#include “pvm3.h”
#include
#include

main()
{
int ptid;
char buf[100];

ptid = pvm_parent();

strcpy(buf, “hello, world from “);
gethostname(buf + strlen(buf), 64);

pvm_initsend(PvmDataDefault);
pvm_pkstr(buf);
pvm_send(ptid, 1);

pvm_exit();
exit(0);
}

—————-

Para compilar cada uno de ellos podríamos usar “aimk” o simplemente una línea de comandos como ésta:

cc hello.c -o hello -lpvm3

y lo mismo para el otro fuente:

cc hello_other.c -o hello_other -lpvm3

]]>
Por: Tamara https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-768 Tamara Sat, 06 Jun 2009 16:53:03 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-768 Hola, tengo el mismo problema que tenía PAco:

Al poner add host me devuelve:
Terminado y sale del pvm.
¿Qué puedo hacer? PAco, ¿lo pusiste soluccionar al final? ¿Cómo?
Muchas gracias,

]]>
Por: mvr1981 https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-767 mvr1981 Thu, 14 May 2009 01:58:36 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-767 Muchas gracias, aunque no tengo los conocimientos necesarios de Linux, voy a intentar crear un cluster, me gusta la idea, y será la oportunidad para aprender algo mas.

]]>
Por: PAco https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-766 PAco Mon, 23 Feb 2009 21:23:18 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-766 Hola, tengo problemas al aniadir un nodo.
Al poner add slave1 me regresa:
add slave1
terminado
y sale de pvm y no lo agrega
que hago???

]]>
Por: Juan CLaudio https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-765 Juan CLaudio Fri, 07 Nov 2008 19:35:26 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-765 Muy buena es decir excelente guia
Tuve que realizar lo mismo para la Universidad el año pasado pero no habia tanta info, asi que con mis compañeros de clases sufrimos harto xDDd
Con esta guia esta todo claro y paso a paso to perfect te felicito.
Para los que no hayan realizado esto, es bastante entretenido realizarlo y se aprende harto
saludos

]]>
Por: xavi https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-764 xavi Mon, 07 Jul 2008 12:45:35 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-764 He seguido tu guía, para la configuración del pvm, pero me quedo estancado al añadir los esclavos, esto es lo que obtengo al intentar añadir-lo. El el esclavo el pvmd esta funcionando y la variables de entorno, están correctamente cargadas; además el ssh está correctamente configurado

pvm> add node1
add node1
0 successful
HOST DTID
node1 No such host

]]>
Por: Giover https://www.estrellateyarde.org/virtualizacion/clusters-beowulf-pvm#comment-763 Giover Mon, 19 May 2008 13:33:23 +0000 https://www.estrellateyarde.org/discover/cluster-beowulf-pvm-en-linux#comment-763 libpvm [pid13828] /tmp/pvmd.0: No such file or directory
libpvm [pid13828]: Console: Can’t start pvmd

Tambien me aparece el mismo error luego de instalar el pvm.
Estoy haciendolo el Debian, alguien tiene alguna idea? porfavor.

]]>