Getting Serives working [Services are currently down. Pleas]

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
DarkElement
Posts: 9
Joined: Sun Mar 12, 2006 4:42 pm

Getting Serives working [Services are currently down. Pleas]

Post by DarkElement »

Services are currently down. Please try again later.
I get this message when im connecting to my server

the server is completly working, only that thing

here's what i got in my 2 files.. (magick.ini and unrealircd.conf)
i dont care about the passwords and stuff, i will change it when i got it up and running

plz help:
the files: [CONF URL] | [ANOTHER CONF URL]

Moderator: Putting your configuration on the forums is bad.
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
DarkElement
Posts: 9
Joined: Sun Mar 12, 2006 4:42 pm

Post by DarkElement »

i readed that, but i dont know what im doing wrong, please check my files :(
DarkElement
Posts: 9
Joined: Sun Mar 12, 2006 4:42 pm

Post by DarkElement »

MODERATOR: Please do not put 1000-lines files on this forum, thank youuuu
DarkElement
Posts: 9
Joined: Sun Mar 12, 2006 4:42 pm

Post by DarkElement »

and if i type:

Code: Select all

/oper DarkElement goodmorning
then i get:

Code: Select all

No O-Lines for your host

But it IS in the config file:

Code: Select all

oper DarkElement { 
   class           clients; 
   from { 
      userhost d201134.upc-d.chello.nl; 
   }; 
   password "goodmorning"; 
   flags 
   { 
      netadmin; 
      can_zline; 
      can_gzline; 
      can_gkline; 
      global; 
   }; 
}; 
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

Code: Select all

oper DarkElement { 
   class           clients; 
   from { 
      userhost d201134.upc-d.chello.nl; 
   }; 
   password "goodmorning"; 
   flags 
   { 
      netadmin; 
      can_zline; 
      can_gzline; 
      can_gkline; 
      global; 
   }; 
}; 
Your from::userhost has invalid syntax.
DarkElement
Posts: 9
Joined: Sun Mar 12, 2006 4:42 pm

Post by DarkElement »

Stealth wrote:

Code: Select all

oper DarkElement { 
   class           clients; 
   from { 
      userhost d201134.upc-d.chello.nl; 
   }; 
   password "goodmorning"; 
   flags 
   { 
      netadmin; 
      can_zline; 
      can_gzline; 
      can_gkline; 
      global; 
   }; 
}; 
Your from::userhost has invalid syntax.
What is wrong with it ?
What do i need to put there :? ?
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
Syzop
UnrealIRCd head coder
Posts: 2181
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post by Syzop »

First, what does an oper block have to with Services??

Second, there's a FAQ item about *exactly* this: Running - I can't /oper myself
* First of all are you listed in '/stats o'? If not then there's some problem with your oper block. Oh and don't forget to /rehash of course ;)
* Try first with oper::from::userhost set to *@* and after you succeeded in /oper'ing up you can set it more strict if you want.
* you must oper up by typing: '/oper username password'. both username and password are case sensitive!
Of course the link Dukat gave should also help ;p
DarkElement
Posts: 9
Joined: Sun Mar 12, 2006 4:42 pm

Post by DarkElement »

How do i know what my Host/Host mask is :?:?:?
DarkElement
Posts: 9
Joined: Sun Mar 12, 2006 4:42 pm

Post by DarkElement »

Syzop wrote:First, what does an oper block have to with Services??
Well, if im IRC Operator i can start and stop services :?

edit changed it into this

Code: Select all

oper DarkElement {
	class           clients;
	from {
		userhost 127.0.0.1;
	};
	password "goodmorning";
	flags
	{
		netadmin;
		can_zline;
		can_gzline;
		can_gkline;
		global;
	};
};
DarkElement
Posts: 9
Joined: Sun Mar 12, 2006 4:42 pm

Post by DarkElement »

I got oper working now!
But i still want the services to work.. :/
Ron2K

Post by Ron2K »

What messages do you get when you try to link your services with your ircd?
DarkElement
Posts: 9
Joined: Sun Mar 12, 2006 4:42 pm

Post by DarkElement »

Code: Select all

Services are currently down. Please try again later.
Ron2K

Post by Ron2K »

You didn't answer my question. That message is what happens when you try to use Services, not when you try and link them.

Basically, the "Services is currently down" message that you get when you try and use your aliases (/nickserv, /chanserv, etc) means one of two things. Either Services is indeed down (which means that it hasn't linked), or Services is indeed linking but your set::services-server directive is incorrect. Now, what I'm trying to do is figure out which one of the two it is, and I'm doing that by trying to see if your services have linked. If they have, it's the latter; if they haven't it's the former.

(If you don't know what linking Services to your ircd is all about, well then quite frankly you're the type of person who shouldn't be running an ircd in the first place.)
Locked