Найти в Дзене
mysql repair debian 9
шо делоть если Вы дебик, и не умеете бекапить базы как человек? человеческий вариант бэкапов: “ You should use --events --routines when using mysqldump.You should use the --force option of the mysql client when loadingmysqldump output as part of a migration from MySQL to MariaDB, and in any other circumstance where system tables might vary between the source and destination.You must run mysql_upgrade after loading an SQL dump from any other version and/or any other software...
4 года назад
Установка OTRS 6.0.28-01 на CentOS 8
Yum update -y setenforce 0 Sed -I –follow-symlinks’s/SELinux=enforcing/SELinux=permissive/G’ /etc/sysconfig/SELinux yum install httpd httpd-Devel GCC MariaDB-server -y
4 года назад
Парс активных учёток из домена через PowerShell в xml
$objSearcher = New-Object System.DirectoryServices.DirectorySearcher $objSearcher.SearchRoot = “LDAP://DC=domain,DC=example,DC=com” $objSearcher.SearchScope = “Subtree” $objSearcher.Filter = “(&(givenname=*)(sn=*)(samaccountname=*)(mail=*)(!userAccountControl:1.2.840.113556.1.4.803:=2))” $users = $objSearcher.FindAll() $template = @“ <domainusers> ”@ $users | ForEach-Object { $_ = $_.GetDirectoryEntry() $template += @“ <user> <имя> $($_...
4 года назад