Zum Inhalt springen

simo2009

Mitglieder
  • Gesamte Inhalte

    7
  • Benutzer seit

  • Letzter Besuch

Alle Inhalte von simo2009

  1. Für alle die es noch lesen... Problem ist gelöst, glücklicherweise war es kein USN-Rollback. konnten den DCDIAG-Fehler beheben indem wir netlogon zurückgestzt haben....
  2. Hallo zusammen, hatte gehofft das Problem alleine lösen zu können, aber da mir inzwischen der Kopf raucht kann ich einfach keinen klaren Gedanken fassen.... Ich hoffe Ihr könnt mir helfen. Zu dem Problem: letzte woche ist der Hauptdatenbank Server(W2K Server mit MS-SQL2000 Datenbank),welcher auch gleichzeitig haupt DC ist und alle fsmo-roles beinhaltet, gecrrashed und ließ sich nicht mehr starten nach aussage meines Kollegen. Zum Glück habe ich 2 Tage vorher ein Image per Acronis Boot-CD gezogen und mein Kollege am Tag danach ein Backup der Datenbank gemacht. kurzer hand Image aufgespielt und datenbank Backup wieder eingebunden und der Server lief wieder.... leider nur bis zum Abend... Da es der Haupt DC war, der ausgefallen ist und auf dem wir das Image aufgespielt haben, vermute ich das die Server jetzt nicht richtig syncron laufen. Aber an dem AD wurde mindestens 1 woche vor dem Absturz nichts verändert.... wenn ich aber "dcdiag" ausführe bekomme ich folgende fehler: Domain Controller Diagnosis Performing initial setup: Done gathering initial info. Doing initial required tests Testing server: Standardname-des-ersten-Standorts\REMUS Starting test: Connectivity ......................... REMUS passed test Connectivity Doing primary tests Testing server: Standardname-des-ersten-Standorts\REMUS Starting test: Replications [Replications Check,REMUS] A recent replication attempt failed: From ROMULUS to REMUS Naming Context: CN=Schema,CN=Configuration,DC=OK-BackOffice The replication generated an error (8456): Der Quellserver nimmt zurzeit keine Replikationsanforderungen entgeg en. The failure occurred at 2010-01-25 15:46.43. The last success occurred at 2010-01-21 12:45.40. 73 failures have occurred since the last success. Replication has been explicitly disabled through the server options. [Replications Check,REMUS] A recent replication attempt failed: From ROMULUS to REMUS Naming Context: CN=Configuration,DC=OK-BackOffice The replication generated an error (8456): Der Quellserver nimmt zurzeit keine Replikationsanforderungen entgeg en. The failure occurred at 2010-01-25 16:34.53. The last success occurred at 2010-01-21 13:13.30. 517 failures have occurred since the last success. Replication has been explicitly disabled through the server options. [Replications Check,REMUS] A recent replication attempt failed: From ROMULUS to REMUS Naming Context: DC=OK-BackOffice The replication generated an error (8456): Der Quellserver nimmt zurzeit keine Replikationsanforderungen entgeg en. The failure occurred at 2010-01-25 16:36.20. The last success occurred at 2010-01-21 12:45.40. 482 failures have occurred since the last success. Replication has been explicitly disabled through the server options. ......................... REMUS passed test Replications Starting test: NCSecDesc ......................... REMUS passed test NCSecDesc Starting test: NetLogons ......................... REMUS passed test NetLogons Starting test: Advertising ......................... REMUS passed test Advertising Starting test: KnowsOfRoleHolders ......................... REMUS passed test KnowsOfRoleHolders Starting test: RidManager ......................... REMUS passed test RidManager Starting test: MachineAccount ......................... REMUS passed test MachineAccount Starting test: Services ......................... REMUS passed test Services Starting test: ObjectsReplicated ......................... REMUS passed test ObjectsReplicated Starting test: frssysvol Error: No record of File Replication System, SYSVOL started. The Active Directory may be prevented from starting. ......................... REMUS passed test frssysvol Starting test: kccevent ......................... REMUS passed test kccevent Starting test: systemlog ......................... REMUS passed test systemlog Running enterprise tests on : OK-BackOffice Starting test: Intersite ......................... OK-BackOffice passed test Intersite Starting test: FsmoCheck ......................... OK-BackOffice passed test FsmoCheck C:\Dokumente und Einstellungen\Administrator.OK-BACKOFFICE>dcdiag Netdiag läuft allerdings fehlerfrei durch.... kann mir jemand sagen wie man das wieder hinbiegt?
  3. simo2009

    Jdbc

    Hi alle, Ich habe ein JDBC Programm geschrieben, welches zwei Spalten alle Datensätze einer Tabelle "history" (SQL Server2000) liest und auf der Konsole ausgibt hier das programm: package ok.test; import java.sql.Connection; import java.sql.Date; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.text.SimpleDateFormat; import com.microsoft.sqlserver.jdbc.SQLServerDataSource; import com.microsoft.sqlserver.jdbc.SQLServerException; public class TestHistory { private static Connection con=null; private static PreparedStatement stmt=null; private static ResultSet rs=null; static Connection connectDB() throws SQLServerException{ SQLServerDataSource mds=new SQLServerDataSource(); mds.setPassword("admin"); mds.setUser("sa"); mds.setURL("jdbc:sqlserver://localhost:1433;databaseName=OKBODATA1"); Connection con =mds.getConnection(); return con; } public static String getDateText(int d){ SimpleDateFormat df = new SimpleDateFormat("dd.MM.yyyy"); String result = df.format(d); return result; } public static void main(String args[]) throws SQLException{ con = connectDB(); stmt = con.prepareStatement("SELECT * FROM history"); rs = stmt.executeQuery(); while(rs.next()){ int UsrKey = rs.getInt("UsrKey"); int Datum = rs.getInt("Datum"); String datum = getDateText(Datum); System.out.println("User key :" +UsrKey+ "|" +datum); } } } und hier ein Auszug aus der Konsolenausgabe: User key :69| Datum:01.01.1970 User key :69| Datum:01.01.1970 User key :69| Datum:01.01.1970 User key :69| Datum:01.01.1970 User key :69| Datum:01.01.1970 User key :69| Datum:01.01.1970 User key :69| Datum:01.01.1970 User key :69| Datum:01.01.1970 User key :2| Datum:01.01.1970 User key :2| Datum:01.01.1970 Das Problem: Mein Vorgänger, der die Tabelle history entwicklelt hat, hat dummerweise das Datum als int definiert(z.B Datum=75155). und ich will das Datum Feld in eine lesbare Form z.B : yyyy.MM.dd o.ä umwandeln. Dafür habe ich die methode getDateText(int) entwickelt (die hat in einem anderen Programm mit long statt int problemlos funktionniert), aber wie man sieht gibt bei allen Datensätzen das gleiche Datum (01.01.1970) aus, was natürlich nicht stimmt. Bin dankbare für jede Hilfe. googlen hat nicht vieles gebracht leider.
  4. simo2009

    Active Directory

    Für einen saueren Abschluss: Wir haben die Befehle oben aus dem Link auf Remus ausgeführt. Dann noch Romulus komplett neuinstalliert (vllt unnötig?) Aber der eigentlich Knackpunkt war wohl der fehlende DNS-Server. :upps Die Namensauflösung hat wohl dank der hosts Datei funktioniert, aber AD will einfach nicht ohne. Also haben wir auf Remus einen DNS Server eingerichtet. und schon klappts mit dem AD.
  5. simo2009

    Active Directory

    Nur um sicherzugehen: Auf welchem Rechner muss ich die Befehle oben aus der dem Link ausführen? Auf dem gecrashten Romulus, oder auf Remus (mit dem alten AD)? Ich denke auf Remus, bin mir aber wie gesagt nicht sicher. Danke nochmal und noch nen schönen Abend.
  6. simo2009

    Active Directory

    Hi Frank, Danke für die schnelle Antwort. Der alte Server(Romulus) wurde nicht von AD entfernt, denn er hatte ein Krash, weshalb wir ihn neuistallieren müssten. der Remus, also der bestehende server hat die Rollen nicht. den er ist ein neben DC. Trotdem habe ich die FMSO Roles von Remus auf Romulus übertragen, weil ich denke er merkt sich die Rollen und config von Romulus, der diese Rollen ja hatte. Bin kein AD Profi, aber ich denke dass Remus noch Informtionen vor der Neuinstallation(vielleicht in Hashtables) speichert, und nach der Neuinstalltion kann er nicht mehr Romulus(gleicher Name und IP-Adr nach wie vor) erkennen bzw vertrauen. Das habe ich aus die Ausgaben von dcdiag.exe und netdiag.exe ermittelt. Hier alle Infos die ich über den beiden sammeln konnte: **********************VomRomulus*********************** C:\Programme\Support Tools>dcdiag Domain Controller Diagnosis Performing initial setup: Done gathering initial info. Doing initial required tests Testing server: Standardname-des-ersten-Standorts\ROMULUS Starting test: Connectivity 597b4c01-f600-4c19-9767-d6a42157ecd6._msdcs.OK-BackOffice's server DNS name could not be resolved to an IP address. Check the DNS server, DHCP, server name, etc Although the Guid DNS name (597b4c01-f600-4c19-9767-d6a42157ecd6._msdcs.OK-BackOffice) couldn' be resolved, the server name (romulus) resolved to the IP address (192.168.100.15) and was pingable. Check that the IP address is registered correctly with the DNS server. ......................... ROMULUS failed test Connectivity Doing primary tests Testing server: Standardname-des-ersten-Standorts\ROMULUS Skipping all tests, because server ROMULUS is not responding to directory service requests Running enterprise tests on : OK-BackOffice Starting test: Intersite ......................... OK-BackOffice passed test Intersite Starting test: FsmoCheck Warning: DcGetDcName(GC_SERVER_REQUIRED) call failed, error 1355 A Global Catalog Server could not be located - All GC's are down. Warning: DcGetDcName(PDC_REQUIRED) call failed, error 1355 A Primary Domain Controller could not be located. The server holding the PDC role is down. ......................... OK-BackOffice failed test FsmoCheck ################################################################# C:\Programme\Support Tools>netdiag ..................................... Computer Name: ROMULUS DNS Host Name: romulus System info : Windows 2000 Server (Build 2195) Processor : x86 Family 15 Model 3 Stepping 2, AuthenticAMD List of installed hotfixes : KB888111W2k Q147222 Netcard queries test . . . . . . . : Passed GetStats failed for 'Parallelanschluss (direkt)'. [ERROR_NOT_SUPPORTED] GetStats failed for 'WAN-Miniport (PPTP)'. [ERROR_GEN_FAILURE] [WARNING] The net card 'WAN-Miniport (IP)' may not be working because it has not received any packets. [WARNING] The net card 'WAN-Miniport (Netzwerkmonitor)' may not be working b ecause it has not received any packets. [WARNING] The net card 'WAN-Miniport (AppleTalk)' may not be working because it has not received any packets. GetStats failed for 'WAN-Miniport (L2TP)'. [ERROR_NOT_SUPPORTED] Per interface results: Adapter : LAN-Verbindung 3 Netcard queries test . . . : Passed Host Name. . . . . . . . . : romulus IP Address . . . . . . . . : 192.168.100.15 Subnet Mask. . . . . . . . : 255.255.255.0 Default Gateway. . . . . . : 192.168.100.1 Dns Servers. . . . . . . . : 192.168.100.15 AutoConfiguration results. . . . . . : Passed Default gateway test . . . : Passed NetBT name test. . . . . . : Passed WINS service test. . . . . : Skipped There are no WINS servers configured for this interface. Global results: Domain membership test . . . . . . : Passed NetBT transports test. . . . . . . : Passed List of NetBt transports currently configured: NetBT_Tcpip_{DD52A0E4-AEEF-4897-B1DF-38638262B525} 1 NetBt transport currently configured. Autonet address test . . . . . . . : Passed IP loopback ping test. . . . . . . : Passed Default gateway test . . . . . . . : Passed NetBT name test. . . . . . . . . . : Passed Winsock test . . . . . . . . . . . : Passed DNS test . . . . . . . . . . . . . : Failed [FATAL] File \config\netlogon.dns contains invalid DNS entries. [FATAL ] No DNS servers have the DNS records for this DC registered. Redir and Browser test . . . . . . : Passed List of NetBt transports currently bound to the Redir NetBT_Tcpip_{DD52A0E4-AEEF-4897-B1DF-38638262B525} The redir is bound to 1 NetBt transport. List of NetBt transports currently bound to the browser NetBT_Tcpip_{DD52A0E4-AEEF-4897-B1DF-38638262B525} The browser is bound to 1 NetBt transport. DC discovery test. . . . . . . . . : Passed DC list test . . . . . . . . . . . : Passed Trust relationship test. . . . . . : Failed [FATAL] Secure channel to domain 'OK-BACKOFFICE' is broken. [ERROR_NO_LOGON_ SERVERS] Kerberos test. . . . . . . . . . . : Passed LDAP test. . . . . . . . . . . . . : Failed [WARNING] The default SPN registration for 'HOST/ROMULUS' is missing on DC ' romulus'. [WARNING] The default SPN registration for 'HOST/ROMULUS' is missing on DC 'remus.OK-BackOffice'. [FATAL] The default SPNs are not properly registered on any DCs. Bindings test. . . . . . . . . . . : Passed WAN configuration test . . . . . . : Skipped No active remote access connections. Modem diagnostics test . . . . . . : Passed IP Security test . . . . . . . . . : Passed IPSec policy service is active, but no policy is assigned. The command completed successfully *********************vomRemus***************************** C:\Dokumente und Einstellungen\Administrator.OK-BACKOFFICE>ipconfig/all Windows 2000-IP-Konfiguration Hostname. . . . . . . . . . . . . : remus Primäres DNS-Suffix . . . . . . . : OK-BackOffice Knotentyp . . . . . . . . . . . . : Broadcastadapter IP-Routing aktiviert. . . . . . . : Nein WINS-Proxy aktiviert. . . . . . . : Nein DNS-Suffixsuchliste . . . . . . . : OK-BackOffice Ethernetadapter "LAN-Verbindung 3": Verbindungsspezifisches DNS-Suffix: Beschreibung. . . . . . . . . . . : NVIDIA nForce Networking Controller Physikalische Adresse . . . . . . : 00-18-F3-44-01-A0 DHCP-aktiviert. . . . . . . . . . : Nein IP-Adresse. . . . . . . . . . . . : 192.168.100.16 Subnetzmaske. . . . . . . . . . . : 255.255.255.0 Standardgateway . . . . . . . . . : 192.168.100.1 DNS-Server. . . . . . . . . . . . : 192.168.100.15 Ethernetadapter "Hamachi": Verbindungsspezifisches DNS-Suffix: Beschreibung. . . . . . . . . . . : Hamachi Network Interface Physikalische Adresse . . . . . . : 00-23-C3-97-97-77 DHCP-aktiviert. . . . . . . . . . : Ja Autokonfiguration aktiviert . . . : Nein IP-Adresse. . . . . . . . . . . . : 5.151.151.119 Subnetzmaske. . . . . . . . . . . : 255.0.0.0 Standardgateway . . . . . . . . . : DHCP-Server . . . . . . . . . . . : 5.0.0.1 DNS-Server. . . . . . . . . . . . : Lease erhalten. . . . . . . . . . : Dienstag, 12. Januar 2010 18:34:58 Lease läuft ab. . . . . . . . . . : Mittwoch, 12. Januar 2011 18:34:58 ********************************************************************************************************************************************************** Remus dcdiag C:\Programme\Support Tools>dcdiag Domain Controller Diagnosis Performing initial setup: Done gathering initial info. Doing initial required tests Testing server: Standardname-des-ersten-Standorts\REMUS Starting test: Connectivity ......................... REMUS passed test Connectivity Doing primary tests Testing server: Standardname-des-ersten-Standorts\REMUS Starting test: Replications ......................... REMUS passed test Replications Starting test: NCSecDesc ......................... REMUS passed test NCSecDesc Starting test: NetLogons ......................... REMUS passed test NetLogons Starting test: Advertising ......................... REMUS passed test Advertising Starting test: KnowsOfRoleHolders Warning: CN="NTDS Settings DEL:c1ae8c8e-a416-44e5-a24e-8b3675cec0e2",CN=ROMULUS,CN=Servers,CN=Standardname-des-ersten-Standorts,CN=Sites,CN=Configuration,DC=OK-BackOff ice is the Schema Owner, but is deleted. Warning: CN="NTDS Settings DEL:c1ae8c8e-a416-44e5-a24e-8b3675cec0e2",CN=ROMULUS,CN=Servers,CN=Standardname-des-ersten-Standorts,CN=Sites,CN=Configuration,DC=OK-BackOff ice is the Domain Owner, but is deleted. Warning: CN="NTDS Settings DEL:c1ae8c8e-a416-44e5-a24e-8b3675cec0e2",CN=ROMULUS,CN=Servers,CN=Standardname-des-ersten-Standorts,CN=Sites,CN=Configuration,DC=OK-BackOff ice is the PDC Owner, but is deleted. Warning: CN="NTDS Settings DEL:c1ae8c8e-a416-44e5-a24e-8b3675cec0e2",CN=ROMULUS,CN=Servers,CN=Standardname-des-ersten-Standorts,CN=Sites,CN=Configuration,DC=OK-BackOff ice is the Rid Owner, but is deleted. Warning: CN="NTDS Settings DEL:c1ae8c8e-a416-44e5-a24e-8b3675cec0e2",CN=ROMULUS,CN=Servers,CN=Standardname-des-ersten-Standorts,CN=Sites,CN=Configuration,DC=OK-BackOff ice is the Infrastructure Update Owner, but is deleted. ......................... REMUS failed test KnowsOfRoleHolders Starting test: RidManager Warning: FSMO Role Owner is deleted. ......................... REMUS passed test RidManager Starting test: MachineAccount ......................... REMUS passed test MachineAccount Starting test: Services ......................... REMUS passed test Services Starting test: ObjectsReplicated ......................... REMUS passed test ObjectsReplicated Starting test: frssysvol ......................... REMUS passed test frssysvol Starting test: kccevent An Warning Event occured. EventID: 0x800004F1 Time Generated: 01/13/2010 14:38:06 (Event String could not be retrieved) An Warning Event occured. EventID: 0x800004F1 Time Generated: 01/13/2010 14:38:06 (Event String could not be retrieved) An Warning Event occured. EventID: 0x800004F1 Time Generated: 01/13/2010 14:38:06 (Event String could not be retrieved) An Warning Event occured. EventID: 0x80000632 Time Generated: 01/13/2010 14:48:02 (Event String could not be retrieved) ......................... REMUS failed test kccevent Starting test: systemlog ......................... REMUS passed test systemlog Running enterprise tests on : OK-BackOffice Starting test: Intersite ......................... OK-BackOffice passed test Intersite Starting test: FsmoCheck Warning: DcGetDcName(GC_SERVER_REQUIRED) call failed, error 1355 A Global Catalog Server could not be located - All GC's are down. Warning: DcGetDcName(PDC_REQUIRED) call failed, error 1355 A Primary Domain Controller could not be located. The server holding the PDC role is down. ......................... OK-BackOffice failed test FsmoCheck ********************************************************************************************************************************************************* C:\Programme\Support Tools>netdiag ........................................ Computer Name: REMUS DNS Host Name: remus.OK-BackOffice System info : Windows 2000 Server (Build 2195) Processor : x86 Family 15 Model 3 Stepping 2, AuthenticAMD List of installed hotfixes : KB329115 KB822343 KB823182 KB823559 KB824105 KB825119 KB826232 KB828035 KB828749 KB832353 KB832359 KB841356 KB842773 KB885836 KB893756 KB893803v2 KB896358 KB896422 KB896423 KB899587 KB899589 KB899591 KB900725 KB901017 KB901214 KB904706 KB905414 KB905495-IE6SP1-20050805.184113 KB905749 KB908519 KB908531 KB911280 KB911564 KB913580 KB914388 KB914389 KB917008 KB917422 KB917736 KB917953 KB918118 KB920213 KB920670 KB920683 KB920685 KB920958 KB921398 KB921503 KB922582 KB923191 KB923414 KB923561 KB923694-OE6SP1-20061106.120000 KB923810 KB923980 KB924191 KB924270 KB924667 KB925398_WMP64 KB925902 KB926122 KB926247 KB926436 KB927891 KB928090-IE6SP1-20070125.120000 KB928843 KB929969-IE6SP1-20061220.120000 KB930178 KB931768-IE6SP1-20070219.120000 KB931784 KB932168 KB933566-IE6SP1-20070417.120000 KB933729 KB935839 KB935840 KB936021 KB937894 KB938127-IE6SP1-20070626.120000 KB938464-IE6SP1-20080429.120000 KB938827 KB938829 KB939653-IE6SP1-20070817.120000 KB941202-OE6SP1-20070820.120000 KB943055 KB943485 KB944338 KB945553 KB950749 KB950760 KB950974 KB951066-OE6SP1-20080625.120000 KB951698 KB951748 KB952004 KB952954 KB954600_WM41 KB955069 KB956802 KB957097 KB957280 KB958215-IE6SP1-20081016.120000 KB958470 KB958644 KB958687 KB958690 KB959426 KB960225 KB960714-IE6SP1-20081211.120000 KB960715 KB960803 KB960859 KB961371-V2 KB961501 KB967715 KB968537 KB969805 KB970238 KB971557 KB971633 KB972260-IE6SP1-20090722.120000 KB973346 KB973354-OE6SP1-20090710.120000 KB973507 KB973869 Q147222 Q828026 Update Rollup 1 Netcard queries test . . . . . . . : Passed GetStats failed for 'Parallelanschluss (direkt)'. [ERROR_NOT_SUPPORTED] GetStats failed for 'WAN-Miniport (PPTP)'. [ERROR_GEN_FAILURE] [WARNING] The net card 'WAN-Miniport (IP)' may not be working because it has not received any packets. GetStats failed for 'WAN-Miniport (L2TP)'. [ERROR_NOT_SUPPORTED] Per interface results: Adapter : LAN-Verbindung 3 Netcard queries test . . . : Passed Host Name. . . . . . . . . : remus IP Address . . . . . . . . : 192.168.100.16 Subnet Mask. . . . . . . . : 255.255.255.0 Default Gateway. . . . . . : 192.168.100.1 Dns Servers. . . . . . . . : 192.168.100.15 AutoConfiguration results. . . . . . : Passed Default gateway test . . . : Passed NetBT name test. . . . . . : Passed WINS service test. . . . . : Skipped There are no WINS servers configured for this interface. Adapter : Hamachi Netcard queries test . . . : Passed Host Name. . . . . . . . . : remus IP Address . . . . . . . . : 5.151.151.119 Subnet Mask. . . . . . . . : 255.0.0.0 Default Gateway. . . . . . : Dns Servers. . . . . . . . : IpConfig results . . . . . : Failed Pinging DHCP server - not reachable WARNING: DHCP server may be down. AutoConfiguration results. . . . . . : Passed Default gateway test . . . : Skipped [WARNING] No gateways defined for this adapter. NetBT name test. . . . . . : Passed No remote names have been found. WINS service test. . . . . : Skipped There are no WINS servers configured for this interface. Global results: Domain membership test . . . . . . : Passed NetBT transports test. . . . . . . : Passed List of NetBt transports currently configured: NetBT_Tcpip_{7BBA4C69-82E4-411E-A791-74A56E29020C} NetBT_Tcpip_{107DD569-2754-4D8F-B512-804617FC3B75} 2 NetBt transports currently configured. Autonet address test . . . . . . . : Passed IP loopback ping test. . . . . . . : Passed Default gateway test . . . . . . . : Passed NetBT name test. . . . . . . . . . : Passed Winsock test . . . . . . . . . . . : Passed DNS test . . . . . . . . . . . . . : Failed [WARNING] Cannot find a primary authoritative DNS server for the name 'remus.OK-BackOffice.'. [RCODE_SERVER_FAILURE] The name 'remus.OK-BackOffice.' may not be registered in DNS. [FATAL] File \config\netlogon.dns contains invalid DNS entries. [FATAL] No DNS servers have the DNS records for this DC regis. Redir and Browser test . . . . . . : Passed List of NetBt transports currently bound to the Redir NetBT_Tcpip_{7BBA4C69-82E4-411E-A791-74A56E29020C} NetBT_Tcpip_{107DD569-2754-4D8F-B512-804617FC3B75} The redir is bound to 2 NetBt transports. List of NetBt transports currently bound to the browser NetBT_Tcpip_{7BBA4C69-82E4-411E-A791-74A56E29020C} NetBT_Tcpip_{107DD569-2754-4D8F-B512-804617FC3B75} The browser is bound to 2 NetBt transports. DC discovery test. . . . . . . . . : Passed DC list test . . . . . . . . . . . : Passed Trust relationship test. . . . . . : Failed [FATAL] Secure channel to domain 'OK-BACKOFFICE' is broken. [ERROR_NO_LOGON_SERVERS] Kerberos test. . . . . . . . . . . : Passed LDAP test. . . . . . . . . . . . . : Passed Bindings test. . . . . . . . . . . : Passed WAN configuration test . . . . . . : Skipped No active remote access connections. Modem diagnostics test . . . . . . : Passed IP Security test . . . . . . . . . : Passed IPSec policy service is active, but no policy is assigned. The command completed successfully ich habe zusätzlich 2 Dateien mit shutscreen von beiden Rechner als odt dateien angehängt Danke im Vorraus. remus_diag.odt Romulus_Diagnostics.odt
  7. Hallo Leute, Ich habe ein Problem mit Active Directory(AD) und komme ich nicht weiter,auch googlen hat nicht vieln gebracht. Bin dankbar für jede Hilfe Netwerkstruktur: 2 Server(Remus und Romuls): -Romulus: BS Win2k Server Datenbankserver(SQL Server 2000) Interner Hauptdomainserver AD Server Haupt Domaincontroller -Remus:Win2k Server Backup Datenbankserver (Sichert Romulus) Backup Domaincontroller für AD Fileserver -Firewall problemlos läuft. -interner Webserver Romulus erlebte einen crash wegen ein RAID10 Schwerfehler, sodass es zwanglüfig neu installiert werden musste. nach der Installtion: DNS Server installiert und Konfiguriert und läuft sauber AD installiert. Er hat dabei die ADb Struktur einfach von Remus gezogen. Domaine stimmt im Baum sind beide Rechner zu sehen. alle Einstellungen geprüft(richtig) nach der neuinstalltion läuft AD Replikation nicht mehr und bekomme ich bei der Installtion von SQL Server 2000 die Fehlermeldung: "Domaincontroller für diese Domaine konnte nicht gefunden" ich habe dann dcdiag.exe ausgeführt und er meldet: test failed: FMSO is deleted. in der Systemereignisprotokollierung ist dieser Fehler zu sehen: SAM Ereignis-ID:1665. Ich weiss, dass Remus mit alten Daten noch arbeitet, obwohl ich Romulus den gleichen namen und IP-Adr vergeben habe. Aber ich weiss nicht ,wie ich Romulus zu Hauptdomaincontroller machen kann. Hab alles mit ntdsutil.exe versucht(master schema übertragen, PDC master übertragen) und die gleichen Fehler sind noch da. Bin echt langsam frustriert. und hoffe,dass ihr mir hilft, das Problem zu beheben. Dank

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...