Changes between Version 5 and Version 6 of messenger/configuring


Ignore:
Timestamp:
09/17/07 16:28:14 (17 years ago)
Author:
alexandrecorreia
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • messenger/configuring

    v5 v6  
    1212 ==== Configurando o Servidor Jabber ====#configurando_jabber 
    1313 
     14Caso você queira configurar o servidor Jabberd2, 
     15 
     16- 1 . Configurando o arquivo c2s.xml 
     17         
     18        Configure o arquivo c2s.xml, como mostrado abaixo : 
     19         
     20        Importante : 
     21        As tags “<!--”  e “ -->”, significam que o conteúdo entre elas está comentado. 
     22 
     23        1.1 Localize a sessão; 
     24        <!-- Router connection configuration --> 
     25 
     26        1.2 Informamos aqui onde está o certificado gerdo 
     27        Exemplo : <pemfile>/usr/lib/ssl/certs/server.pem</pemfile> 
     28 
     29        1.3 Localize a sessão; 
     30         <!-- Local network configuration --> 
     31 
     32        1.4 Informe o Nome do Servidor Jabber instalado: 
     33        <id>URI</id> 
     34        Exemplo : <id>jabber.example.com</id> 
     35         
     36        1.5 Caso queira informar outra porta para a comunicação com o Jabber: 
     37        <port>PORT</port> 
     38        Exemplo : <port>5222</port> 
     39 
     40        1.6 Localize a sessão: 
     41        <!-- Input/output settings --> 
     42         
     43        1.7 Parametrize o número de conexões: 
     44        (default : 1024) 
     45        <max_fds>QUANT_CONEXÕES</max_fds> 
     46        Exemplo : <max_fds>2048</max_fds> 
     47         
     48 
     49 
     50        1.8 Localize a sessão: 
     51        <!-- Authentication/registration database configuration --> 
     52 
     53        1.9 Informe o tipo de autenticação: 
     54        <module>ldap</module> 
     55         
     56        1.10 Comente a tag enabled: 
     57        Uitilizando o serviço LDAP para autenticação não é possível a criação de usuários 
     58        diretamente via servidor Jabber, portanto é necessário que esta diretiva esteja         comentada. 
     59        <!-- Account registration is enabled by default (provided the 
     60           auth/reg module in use supports it). Comment this out to 
     61           disable. --> 
     62           
     63        <!-- 
     64                <enable/> 
     65        --> 
     66 
     67        1.11 Localize a sessão : 
     68         <!-- LDAP module configuration --> 
     69         
     70        1.12 Configurando o servidor Ldap, informe o Servidor Ldap e a porta : 
     71        <host>ldap.server</host> 
     72        <port>389</port> 
     73 
     74        1.13 Habilite o uso do Ldap V3 se possível: 
     75        <!-- Use LDAP v3 if possible. If disabled, v2 will be used. 
     76          Encryption options are only available if v3 is enabled. --> 
     77         
     78        <v3/> 
     79         
     80        1.14 Informe o DN e a senha para autenticação do LDAP : 
     81        <!-- DN to bind as for searches. If unspecified, the searches 
     82           will be done anonymously. --> 
     83        <binddn>uid=UID,dc=servidor,dc=jabber,dc=example</binddn> 
     84        <bindpw>PASSWORD</bindpw> 
     85         
     86        1.15 Base DN de sua árvore LDAP : 
     87        <!-- base DN of the tree. You should specify a DN for each 
     88           authentication realm declared in the <local/> section above, 
     89           by using the realm attribute. --> 
     90         
     91        <!--<basedn realm='company'>o=Company.com</basedn>--> 
     92        <basedn>ou=CELEPAR,dc=pr,dc=gov,dc=br</basedn> 
     93 
     94 
     95 - 4 . Configurando o arquivo sm.xml 
     96                 
     97        Configure o arquivo s.xml, como mostrado abaixo : 
     98 
     99        4.1 Importante : 
     100        As tags “<!--”  e “ -->”, significam que o conteúdo entre elas está comentado. 
     101 
     102        4.2 Localize a sessão; 
     103        <!-- Session manager configuration --> 
     104 
     105        4.3 Informe o Nome do Servidor Jabber instalado: 
     106        <id>im.pr.gov.br</id> 
     107 
     108        4.4 Localize a sessão: 
     109        <!-- User options --> 
     110         
     111        4.5 Habilite a tag “auto-create” para a criação de sessões 
     112        <auto-create/> 
     113 
    14114 ==== Módulo Expresso Messenger ==== #expresso_messenger 
    15115