Ir al contenido principal

Cambiar Password de Agente Groupwise Messensger Server

Para realizar cambio de password del Agente Groupwise Messenger se tomó el articulo de un sitio encontrado en Novell, el problema mostrado era que el cliente de Groupwise no encontraba el servidor por el puerto 8300



Changing the Agent User Password

When the Messaging Agent and Archive Agent are installed, the user’s eDirectory password that is used to read the configuration that starts the agents is stored in the startup file for each agent. Prior to Messenger 2.0.2 Hot Patch 1, this password was stored in plain text. By default in Messenger 2.0.2 Hot Patch 1, the password is obfuscated to prevent the password from being read.

If you want to check whether the password has been obfuscated, look in the startup files. The password is prepended with $$: if it has been obfuscated.

The GWMPassword utility is used to change the password in the startup file for both the Messaging Agent and the Archive Agent.

NOTE:Messsenger 2.0.2 Hot Patch 1 must be installed before you use the GWMPassword Utility to change the agent user password. If you use the utility before updating your Messenger system to Messenger 2.0.2 Hot Patch 1, your agents do not start.

*

Section 2.4.1, Changing the Agent User Password On NetWare or Windows
*

Section 2.4.2, Changing the Agent User Password on Linux

2.4.1 Changing the Agent User Password On NetWare or Windows

Before using the utility, you must verify the following prerequisites:

*

Make sure you have installed Messenger 2.0.2 Hot Patch 1.
*

A drive must be mapped to the location of the startup file.

To change the password:

1.

In Windows, click Start > Run, then enter cmd to open a command window.
2.

Use the following command to change the password:

c:\gwm202\server\utility\gwmpwd\gwmpwd.exe --startup= --password=

Replace c:\gwm202 with the location where the hot patch files were extracted.

2.4.2 Changing the Agent User Password on Linux

Before using the utility, you must verify the following prerequisites:

*

Make suer you have installed Messenger 2.0.2 Hot Patch 1.
*

A drive must be mapped to the location of the startup file.

1.

After installing Messenger 2.0.2 Hot Patch 1, change to the /opt/novell/messenger/bin/ directory.
2.

Become root by entering sux and the root password.
3.

Use the following command to change the password:

./gwmpwd --startup= --password=

Comentarios

Entradas populares de este blog

Vulnerabilidad en Bluetooth -- BIAS

Crítica vulnerabilidad en Linux desde 2009

Esta semana se dio a conocer la existencia de una vulnerabilidad de 5 años de antigüedad que afecta a la mayoría de las distribuciones del sistema operativo Linux . La misma radica en el kernel del sistema operativo y permite, entre otras cosas, la ejecución de código arbitrario y la elevación de privilegios. Fue introducida al popular sistema operativo de código abierto en el año 2009 con la versión 2.6.31-rc3 del kernel y afecta a todas las versiones liberadas desde entonces hasta la 3.14.3 inclusive. La vulnerabilidad se genera gracias a una corrupción de memoria en el kernel , más específicamente en la función n_tty_write   que controla el pseudo dispositivo tty ( pty ) de Linux. Afortunadamente, la falla fue descubierta por los desarrolladores del kernel de Linux, por lo que pudieron tomar acciones rápidamente publicando un parche  en la rama de desarrollo del proyecto y luego avisando a las respectivas distribuciones para que se liberaran las corre...

PHP On Tomcat

Fue tomado de http://fabien.duminy.ifrance.com/blog/archives/2007/08/entry_14.html tomcat and php Here are the steps to run php in tomcat : Download tomcat and unzip the archive where you want (=> TOMCAT_DIR ) Create the following directories : TOMCAT_DIR /webapps/testPHP If necessary, create directory TOMCAT_DIR /common/lib (it seems, at least with tomcat 6, that the directory is no more created) Edit the file TOMCAT_DIR /conf/catalina.properties and modify the line for property shared.loader : shared.loader=${catalina.home}/common/classes,${catalina.home}/common/lib/*.jar Edit the file TOMCAT_DIR /conf/web.xml and add the lines mentionned below (see ' lines to add to web.xml of your tomcat installation ') To download quercus ( a php 5 engine written in pure java), you must in fact download resin becau...