Displaying 20 results from an estimated 9000 matches similar to: "Reestablishing trust with PDC"
2011 Jan 11
3
[Resolved] Reestablishing trust with PDC
Thanks to both of you - exactly the piece I was missing.
-----Original Message-----
From: tms3 at tms3.com [mailto:tms3 at tms3.com]
Sent: Monday, January 10, 2011 12:52 PM
To: Christ Schlacta
Cc: samba at lists.samba.org
Subject: Re: [Samba] Reestablishing trust with PDC
>
>
> you haven't tried experimenting with backing up and restoring the
> samba password cache. look in
2010 Dec 06
1
Trust does not work anymore after upgrade to 3.4.9
Hi,
I did upgrade from samba 3.0.28b to 3.4.9. Now the trust does not work anymore.
When we try to reestablish the trust, we get an error:
ldapmaster:/etc/openldap/schema # net rpc trustdom establish BIO
Enter EVAN$'s password:
Could not connect to server HEINBLOED
Storing password for trusted domain failed.
Google does not really help and logfiles (loglevl 10) do not tell me what is wrong.
2010 Aug 17
1
NT_STATUS_INVALID_HANDLE with wbinfo -a
I've been stuck on this one for days and can't seem to find anything
referencing the same problem; help would be greatly appreciated. I have a
functioning Samba 3.5.4-63 installation acting as a PDC - users can log in
from Windows 7 machines without problems etc. etc.
The issue is with using wbinfo -a to authenticate users (without going into
too much detail, I'm trying to use the
2006 May 04
1
Creating a trust on an unstable network
I would like to create a trust between a Samba domain and a Win2K
domain. The Samba domain connects via VPN to the Win2K domain.
The Samba domain users need access to files on the Win2K domain and a
trust would make it easier to handle permissions on the files.
However the VPN connection isn't very stable and drops the connection
every day or two.
The Samba Howto says this is a bad thing to
2015 Jan 10
2
Link-dest thinks file is newly created, but it isn't
Hi:
I've been using rsync for a couple years now. Unfortunately, I've made some
changes on both ends, so it's unclear what could be the culprit. I make
extensive use of --link-dest to provide a cheap "Time Machine"-like backup
for a Windows machine.
Source: Windows 7 running Cygwin (CYGWIN_NT-6.1 sith 1.7.33-2(0.280/5/3)
2014-11-13 15:47 x86_64 Cygwin)
Destination: Synology
2008 Mar 19
3
[Bug 1449] New: ssh does not give option to trust on changed keys
https://bugzilla.mindrot.org/show_bug.cgi?id=1449
Summary: ssh does not give option to trust on changed keys
Classification: Unclassified
Product: Portable OpenSSH
Version: 4.7p1
Platform: All
2013 Nov 21
14
openvpn restart fails with dual entry in conntrack and wrong sourceport
the establishment of an openvpn link sometimes fails.
I tracked it down to network traffic with wrong Sourceport in the answer
packet (should be 1300 not 1024):
2 1.119309000 aaa.185.165 bbb.162.192 UDP 58 Source port: 1300
Destination port: 1300
3 1.119446000 bbb.162.192 aaa.185.165 UDP 66 Source port: 1024
Destination port: 1300
and a collateral entry in the connection tracking table
2001 Feb 13
4
cvs bulid breaks on slackware
cvs code from this morning (about 9am PST) breaks on slackware 7.1 w/ gcc
2.95.2.1 with an undefined reference to session_setup_sia in session.o.
this seems to be the culprit here:
#ifdef HAVE_OSF_SIA
#else /* HAVE_OSF_SIA */
session_setup_sia(pw->pw_name, ttyname);
since i have no idea what that's trying to accomplish (and seems to be a bit
backwards to me from looking
2003 Aug 11
5
realpath(3) et al
First, I hope that this message is not considered flame bait. As someone
who has used FreeBSD for for 5+ years now, I have a genuine interest in
the integrity of our source code.
Second, I hope that this message is not taken as any form of insult or
finger pointing. Software without bugs does not exist, and I think we all
know that. Acknowledging that point and working to mitigate the risks
2011 Oct 04
4
Problem: Puppet under Passenger.
Having issues getting Puppet running under Passenger.
From httpd error_log:
[ pid=24647 thr=268010020 file=utils.rb:176 time=2011-10-04
11:45:10.892 ]: *** Exception LoadError in
PhusionPassenger::Rack::ApplicationSpawner (no such file to load --
puppet/application/master) (process 24647, thread #<Thread:
0x0000001ff30448>):
from
2015 Jan 11
2
Link-dest thinks file is newly created, but it isn't
On Sat Jan 10 2015 at 5:21:33 AM Kevin Korb <kmk at sanitarium.net> wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> What does --itemize-changes say about that file? Try using the stat
> command on the various copies of it to see what is different about them.
>
In my original message, I stated I used --itemize-changes, and I reported
the following:
>
2017 Jan 28
3
known_hosts question for Ubuntu Server 14.04 and 16.04 LTS
Hello & thanks for reading.
I'm having a problem configuring known_hosts from scripts so an accept
key yes/no prompt doesn't appear.
I'm using this command to detect if the server is known and add it to
known_hosts:
if ! ssh-keygen -F ${IP_ADDR} -f ~/.ssh/known_hosts > /dev/null 2>&1; t
hen ssh-keyscan -p ${PORT} ${IP_ADDR} >> ~/.ssh/known_hosts; fi
This works
2004 Jan 11
5
BSD-licensed IDS/IDP Software?
I seem to remember seeing somewhere (on this list/on the web -- don't
remember) that there was some ``Snort-like'' software that was available under
the BSD license. Unfortunately, I'm unable to find any information about such
software. Was I dreaming, or can anybody else jog my memory? :)
Kind regards,
Devon H. O'Dell
2003 Nov 07
3
R input file scanning
If the portion of the file that you want to read is "rectangular" (same
number of fields in all lines and same type of data in each column), you can
use either read.table() or scan() and supply the skip= argument to skip over
the headers you don't want to read in.
HTH,
Andy
> From: Mathieu Drapeau [mailto:mathieu.drapeau at bioneq.qc.ca]
>
> Hi,
> I would like to know
2011 Mar 29
2
Scrap java scripts and styles from an html document
Hi,
I am working on developing a web crawler in R and I needed some help with
regard to removal of javascripts and style sheets from the html document of
a web page.
i tried using the xml package, hence the function xpathApply
library(XML)
txt =
xpathApply(html,"//body//text()[not(ancestor::script)][not(ancestor::style)]",
xmlValue)
The output comes out as text lines, without any html
2003 Sep 17
2
ftp
Hi,
Could u recommend a secure ftp daemon? I want to be able to control the ports it uses.... and not to have to let all of the upper ports open.
---------------------------------
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
2003 Aug 28
4
compromised server
I have a server that has been compromised.
I'm running version 4.6.2
when I do
>last
this line comes up in the list.
shutdown ~ Thu Aug 28 05:22
That was the time the server went down.
There seemed to be some configuration changes.
Some of the files seemed to revert back to default versions
(httpd.conf, resolv.conf)
Does anyone have a clue what type of
2020 Oct 04
3
UpdateHostkeys now enabled by default
On Sun, Oct 04, 2020 at 10:50:32PM +1100, Damien Miller wrote:
> On Sun, 4 Oct 2020, Matthieu Herrb wrote:
>
> > On Sun, Oct 04, 2020 at 09:24:12PM +1100, Damien Miller wrote:
> > > On Sun, 4 Oct 2020, Damien Miller wrote:
> > >
> > > > No - I think you've stumbled on a corner case I hadn't anticipated.
> > > > Does your configuration
2003 May 28
3
share persistence problem
After awhile, my connections from my PC to my samba server end up with a
red "X" in them (share disappeared) if I leave my explorer window open.
If I click on these, they "wake up" and continue to function (and
the red X's go away). If I close my explorer window (while the red X's
are there) and reopen it , they are gone. An attempt to reestablish
these
2007 Nov 12
3
Weird error downloading a gzip''ed file
Hi all,
I''ve been using mechanize for a while and it rocks. Docs are pretty clear
and so far I''ve been able to do it on my own.
However, I''m stuck in a weird situation in a script to download my contact
list from hotmail.
I''ve used Firebug to check all urls, and tested it by hand while logged in
via browser.
Even in the script everything works well until the