Exchange 2013 The object has been corrupted, and it´s in an inconsistent state – Migration 2010 to 2013

 

Nach dem Update von Exchange 2010 zu 2013 kam bei jeder Verteilerliste diese Fehlermeldung. Nach längerem Suchen fand ich ein HowTo was ich etwas überarbeiten muss damit es richtig klappt.

 

Step 1: auf dem Exchange in der Management Shell nach Problemen suchen

Get-AdPermission “dc=contoso,dc=local”

 

Step 2: In der PowerShell die Berechtigung finden die Korrupt ist

Import-Module ActiveDirectory

Get-ACl “AD:\dc=contoso,dc=local” | Select Access -ExpandProperty Access | Where-Object {$_.ObjectType -eq
“e2d6986b-2c7f-4cda-9851-d5b5f3fb6706”}

 

Step 3: Die betroffene ACL löschen

Active Directory Users and Computers MMC öffnen –> Domain auswählen –> Properties –> Security –> Advanced –> Korrupte Berechtigung auswählen und am besten nochmal anschauen ob etwas darin ist –> löschen

 

Step 4: wenn möglich den Exchange einfach mal booten – reboot tut gut

WordPress Update ohne FTP

Um Plugins oder das gesamte WordPress ohne FTP Server zu aktualisieren, kann der integrierte Mechanismus verwendet werden, der aber erst aktiviert werden muss.

 

Step 1:

chmod -R 777 /var/www/html/wordpress (oder wie dein Pfad ist)

 

Step 2:

nano /var/www/html/wordpress/wp-config.php

folgendes hinzufügen vor /* That’s all, stop editing! Happy blogging. */

define( “FS_METHOD”, “direct” );

IIS alle Anfragen auf eine Seite weiterleiten

Neue Seite erstellen oder in vorhandene web.conf einfügen.

 

<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”RedirectAllToRoot” patternSyntax=”Wildcard” stopProcessing=”true”>
<match url=”*” />
<action type=”Redirect” url=”http://dasziel.tld” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

Sophos UTM Web Admin / User Portal published over Web Application Firewall

 

To publish the WebAdmin portal via the WAF you need to add a virtual host for NAT.

Traffic from: your Firewall

Service: the port from you WebAdmin portal (4444)

Going to: the virtual host (add a host and choose a available internal IP address)

Destination: your Firewall

Service: the port from you WebAdmin portal (4444)

 

 

 

 

 

 

 

 

 

 

 

 

Add a new real Webserver at the Webserver Protection section

Host: the virtual host from before

Type: HTTPS

Port: the port from you WebAdmin portal (4444)

 

 

 

 

 

 

 

Add a new Virtual Webserver at the Webserver Protection section

Interface: your WAN interface

Domains: choose the certificate for your Domain

Real Webserver: choose the Webserver from before

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Don´t forget to enable every created item!