Probleme for linking services

The UnrealIRCd team does not officially provide support for any services packages that you may be using or want to use. This forum is provided so the community can help each other with services issues.

Moderator: Supporters

Locked
AciD
Posts: 4
Joined: Thu Sep 22, 2005 12:20 am

Probleme for linking services

Post by AciD »

I have Unreal IRCD3.2.3 running perfectly, I install anope-1.6.4, no probleme, I edit unrealircd.conf, make services.conf and start anope

Everything start, but when I write /connect services the answer was :

*** Connect: Server services is not configured for linking

the log file in service say that :

Code: Select all

[Sep 22 21:07:05 2005] Anope 1.6.4 (874) (compiled for UnrealIRCd 3.1.1+) starting up
[Sep 22 21:07:12 2005] Databases loaded
[Sep 22 21:07:12 2005] Connected to Server 1 (localhost:6667)
[Sep 22 21:07:12 2005] Read error from server: Success
and the link block in unrealircd.conf:

Code: Select all

link            irc.myteam.com
{
        username        *;
        hostname        localhost;
        bind-ip         *;
        port            6667;
        hub             *;
        password-connect "xxxx";
        password-receive "xxxx";
        class           servers;
                options {
                        /*autoconnect;
                        ssl;
                        zip;*/
                };
};
the me{} servername:

Code: Select all

me
{
        name "irc.myteam.com";
        info "Myteam Server";
        numeric 1;
};
and in service.conf:

Code: Select all

RemoteServer    localhost 6667 "xxxx"
ServerName  "myteam.com"
can somebody help me please :) ?
Moogey
Posts: 56
Joined: Thu Sep 08, 2005 9:08 pm

Post by Moogey »

The link block doesn't refer to your server name but the server connecting.

Since your services' name is myteam.com (ServerName "myteam.com")

then your link block should say the same:

link myteam.com

then type /connect myteam.com (after rehashing)
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

Moogey wrote:then type /connect myteam.com (after rehashing)
Uhm... No.
You never /connect to services. Services connect to you.
If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
Moogey
Posts: 56
Joined: Thu Sep 08, 2005 9:08 pm

Post by Moogey »

That's right excuse me I knew that :)
Locked