Displaying 20 results from an estimated 1100 matches similar to: "Issues with domain auth"
2003 Mar 10
1
OSX as file server in AD domain
Hi all
I just installed an OSX server that I joined to an existing Active Directory
Domain. It works for the Mac side of OSX, but windows clients can't connect.
>From wath I understand, it is now time to setup samba to authenticate users
of the AD domain. How can I tell samba to use AD for authentification? If
you can point me to an How-to on this, it would be greatly appreciated.
(PS
2002 Aug 30
4
Enhancement of wbinfo in samba2.2.6pre2
Hi,
Most of the samba-commands takes a option for smb.conf file
exept for wbinfo.
It should be nice to have that functionallity in wbinfo also.
/Patrik
--
"In a world without fences who needs Gates"
Patrik Gustavsson, Senior Technical Consultant
patrik.gustavsson@sun.com Telephone: +46 60 671540
http://glen.sweden Mobile: +46 70 3551040
SUN MICROSYSTEMS
2006 Aug 01
2
making backgroundrb cron
Hello,
i need to have some jobs scheduled in the background and executed at
specific times. I wanted to make a worker who does that - and it works a
little bit - but i had an enlightment... why not make bgdrb itself play that
role? i mean, the MiddleMan has already everything needed! a timer thread,
currently used only for deleting old workers and the workers itself. since
im not familiar with
2006 Aug 23
5
Singleton-like Worker
Hello there,
I need a Worker Class to be Singleton-like, that means there must be at
maximum one Instance at a time. When a new Request is made to create another
worker of this type, it should return and wait for the other instance to be
destroyed.
what i need to do: i have a worker who needs to do sth with java and
openoffice, and it seems when i have more tha one worker simultaneously,
2006 Aug 06
1
ActiveRecord: determine if attribute has changed since save
Hello there,
i need to determine whether an attribute of my model has changed since the
last time it was saved. how can i do this?
greets
--
Michael Siebert <info@siebert-wd.de>
www.stellar-legends.de - Weltraum-Browsergame im Alpha-Stadium
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Mar 04
2
BgDRb blocking in ActiveRecord
Hi Folks,
I''ve got a tiny little problem using MySQL-backed ActiveRecord in my
worker class. Sometimes it just blocks infinitely when I try to
access it. I don''t know whether it is in AR itself or in the SQL
driver. It just stops doing anything, logging nothing, no exceptions
are raised. I don''t know if it matters that I call the worker''s
methods via
2006 Aug 01
2
actionmailer cant find template in backgroundrb
Im trying to send mails from a backgroundrb worker and it seems like
ActionView cant find my template. same code works as a rake task.
here my worker:
class StatusMailWorker < BackgrounDRb::Rails
repeat 1.minutes # <-- hehe!
def do_work(args)
[...blah...]
NotificationMailer.create_daily_report(users, rep, items)
end
end
end
its throwing the following error:
No
2006 Aug 07
1
:load_rails
if CONFIG[''load_rails'']
ActiveRecord::Base.allow_concurrency = true
ActiveRecord::Base.establish_connection(YAML.load(ERB.new(IO.read
("#{RAILS_ROOT}/#{CONFIG[''database_yml'']}")).result)[CONFIG[''environment'']])
end
if i read the code right, this option doesnt really load rails. wouldnt it
be better (for those who rely on the
2006 Aug 05
1
[PATCH] --detach on win32
Hello there!
I made a little patch for scripts/backgroundrb/start to make detach work on
win32!
It needs win32-process to work (it''s a lib from the Win32 Utils project on
rubyforge: http://rubyforge.org/projects/win32utils/). To install it, just
issue a "gem install win32-process --include-dependencies". If the script
detects the :detach option (and a win32 platform), it tries
2006 Jul 25
1
bgdrb hangup
Hi,
i had a little problem a few minutes ago. somehow the backgroundrb process
got mad and consumed all the cpu power available, i think it got an endless
loop. i dont know why, no exceptions were thrown.
could this be an issue of bgdrb or ruby or rails (as i load the rails
environment)
--
Michael Siebert <info at siebert-wd.de>
www.stellar-legends.de - Weltraum-Browsergame im
2006 Aug 10
1
IMPORTANT: Rails update 1.1.6
for those who didn''t read it somewhere else: the bug being adresseb by
1.1.5was not completely fixed, so now theres another security update:
http://feeds.feedburner.com/~r/RidingRails/~3/10954980/rails-1-1-6-backports-and-full-disclosure
anybody using engines, dont update since this update will break the plugin,
more info for fixing the bug in this case also in the blog.
--
Michael
2001 Jan 23
10
smbpasswd error
Hallo ,
when I try to change user password on samba server i become this error :
error connecting to 127.0.0.1:139 (Verbindungsaufbau abgelehnt)
unable to connect to SMB server on machine 127.0.0.1. Error was : code
0.
Failed to change password for bukhari
if any someone I have an Idea please send me an E-Mail to
"ufz6@rz.uni-karlsruhe.de"
Thanks to All
Amir Bukhari
2003 Apr 21
1
Samba unable to validate usernames; winbind works
Running the command:
wbinfo -aDOMAINNAME+Administrator%password
works, in fact, all of the wbinfo commands report data as they should.
However, when I try to connect to a share on the SMB server, I get the
following error message in the logs:
[2003/04/21 08:28:59, 0]
smbd/password.c:connect_to_domain_password_server(1328)
connect_to_domain_password_server: machine DWP rejected the tconX on
2006 Jul 24
1
require file from /lib in a worker
Hello,
i need to require a file located in /lib from a worker class, but when i try
to start the backgroundrb server, i get something like
d:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require__'':
no
such file to load -- ./lib/office_thumnail_generator.rb (MissingSourceFile)
i tried it with and without lib, with RAILS_ROOT, nothing worked, altough
the paths look good
2006 Jul 31
1
[PATCH-SUGGESTION] autostarting workers
Hi there,
as i stated before in my talk with Ben Johnson, I hacked a little bit and
here it is - autostarting jobs. I think someone (eh... Ezra) should review
it and check to see if i made any mistakes. Also i dont have the possibility
to test it on other-than-Windows systems, but since the calling process
works just the same, it should do well...
Now the neccesary evil, the documentation...
If
2006 Aug 14
1
Testing CRUD/Rest Controllers
I have a few simple controllers doing plain, simple crud in a standard way.
now it''s not very DRY to write a funtcional test for each controller, since
they are all doing the same (apart from a few variable names, but that could
be easily inflected or so).
is there a way to do this?
e.g. does inheritance work with tests, so i define a base test first,
inherit my other tests and add a few
2007 May 23
3
Speex into a wav file
Erik de Castro Lopo wrote:
> David Siebert wrote:
>
>> Anyone know of some example code that shows storing speex audio into a
>> WAV? For a lot of reasons a WAV is a better choice than ogg for my
>> application.
>
> If you have decoded the speex data to PCM, the easiest way to get
> it to WAV is to use libsndfile:
>
>
2007 May 24
2
Speex into a wav file
David Siebert wrote:
> I am pretty sure the Speex ACM codec/DirectShow Filters do create a
> Speex compressed Wav file.
Can you provide me with a copy of one of these files? Please
email it directly to me.
Erik
--
-----------------------------------------------------------------
Erik de Castro Lopo
-----------------------------------------------------------------
"The RIAA is
2004 Aug 06
3
SHARC DSP
They claim to max out at 1,800 MFLOPs
And have a clock speed of up to 300 mhz.
Jean-Marc Valin wrote:
>Tell me how fast these chips are, I'll tell you if there's a chance...
>
> Jean-Marc
>
>Le jeu 18/12/2003 à 16:52, David Siebert a écrit :
>
>
>>Anyone have any idea if the any of the Sharc or TigerSHARC DSPs are
>>powerful enough to do realtime Speex?
2007 May 23
2
Speex into a wav file
Erik de Castro Lopo wrote:
> David Siebert wrote:
>
>> Actually I was hoping to store speex compressed audio into a wav
>> container. Not to trans code it.
>
> To the best of my knowledge, that is not possible.
Well, it's possible to put compressed data into the WAV file instead of PCM
audio data, and set the compression-type format flag to some made-up value, but