пятница, 5 января 2018 г.

Восстановление довереительных отношений между домена AD в разных лесах


Если проблем с ДНС нет

nltest /dclist:local.test
The command completed successfully
nltest /server:local.test

понедельник, 9 октября 2017 г.

Восстановление базы через запрос T-SQL

Модель восстановление полная!
RESTORE DATABASE base_user2
FROM DISK = 'e:/base_work_backup_2017_10_09_024037_1875729.bak';

вторник, 19 сентября 2017 г.

How-to: Install Net Framework 2.0, 3.0 and 3.5


Method 1 - Try The Installation Via Server Manager

Typically, the easiest way to install Net Framework 2.0, 3.0 & 3.5 is to go to Server Manager...
1. Open "Server Manager"
2. Click on "Manage"
3. Select "Add Roles and Features"
4. On the "Before you begin" page click "Next
5. On the next page, ensure that "Role-based or feature-based installation" is selected, and again click "Next"
6. Select your local server out of the list and continue to click "Next"
7. Bypass the "Server Roles" page by clicking "Next" again
8. Onto the "Features" page now, put a "check" in the "Net Framework 3.5 Features" box and again click "Next"
9. Select "Install" to begin the installation

Method 2 - Specify Alternate Source Files If Method 1 Fails

If the installation fails, you can specify the alternate source path/files which are contained on your Windows Server 2012 / 2012 R2 installation disc or .iso
1. Insert your installation disc or mount your .iso within Server 2012 / 2012 R2
2. Open "Server Manager"
3. Click on "Manage"
4. Select "Add Roles and Features"
5. On the "Before you begin" page click "Next
6. On the next page, ensure that "Role-based or feature-based installation" is selected, and again click "Next"
7. Select your local server out of the list and continue to click "Next"
8. Bypass the "Server Roles" page by clicking "Next" again
9. Onto the "Features" page now, put a "check" in the "Net Framework 3.5 Features" box and again click "Next"
10. This time, click on "Specify an alternate source path" and type the path of your Server 2012 or 2012 R2 installation media e.g.
D:\Sources\SxS (Where D:\ is your DVD Drive containing the installation disc)
11. Select "Install" to begin the installation

пятница, 25 августа 2017 г.

Whitelist and Blacklist domain in zimbra

In this tutorial we will look , how we can blacklist and whitelist email id and domain using file /opt/zimbra/conf/amavisd.conf.in

Note: We need to score the domain and email id rate. Scoring Positive is Blacklist and Negative score is Whitelist .
Positive Score = Blacklist
Negative Score=Whitelist

Whitelist domain using file /opt/zimbra/conf/amavisd.conf.in 
Login with zimbra user
#su - zimbra
$vim /opt/zimbra/conf/amavisd.conf.in

суббота, 25 февраля 2017 г.

Disable POP/IMAP Proxy In Single ZCS Server Environment

Source: http://wiki.zimbra.com/wiki/Ajcody-Proxy-Notes#Need_To_Disable_Pop.2FImap_Proxy_And_Use_POP.2FIMAP_Normally

Sometimes, people install/setup proxy services on their single ZCS server and they don't need them. Here's how you would disable the proxy stuff and get imap/pop working over the default ports.

вторник, 7 февраля 2017 г.

Список команд hpssacli для работы с RAID Smart Array P4xx на ESXI 5.5


После добавление нового контроллера фирменная утилита на отрез отказалась видеть новый контроллер решили пойти путем истинного админа и настроить все через коммандную строку вот некоторые комманды для работы



Путь к утилите
/opt/hp/hpssacli/bin/hpssacli
Смотрим статус Smart Array
/opt/hp/hpssacli/bin/hpssacli ctrl all show status
выбираем контроллер или все доступные контроллеры
ctrl slot=xxx или ctrl all
Создаем логический диск RAID5 из 4 дисков
create type=ld raid=5 drives=2I:1:5,2I:1:6,2I:1:7,2I:1:8
Смотрим статусы логических дисков
logicaldrive all show status
Смотрим статусы физических дисков
pd all show status
Посмотреть режим работы контроллера
show
Смотрим состояние array
ld all show detail
Включаем кэш
ld all modify arrayaccelerator=enable

четверг, 12 января 2017 г.

Сброс пароля пользователя 1С


1. Для сброса пароля необходимы права на администрирование операционной системы Windows.
2. Войти в SQL Server Management Studio с правами администратора.
3. Выбрать свою базу 1С.
4. Найти и Открыть таблицу dbo.Params
5. Найти строчку users.usr и переименовать в users_usr
6. Найти таблицу dbo.v8users и переименовать dbo.v8users_1
7. Войти в 1С конфигуратор (вход без пользователя и пароля).
8. Не закрывая 1С конфигуратор , перейти в SQL Server Management Studio выбрать свою базу 1С и обновить.
9. Должна появиться новая таблица dbo.v8users.
10. Переименовать таблицу dbo.v8users в  dbo.v8users_2, а  dbo.v8users_1 в  dbo.v8users
11. Открыть таблицу dbo.Params , найти строчку users_usr и переименовать обратно в users.usr
12. Перейти в конфигуратор и открыть список пользователей.
13. Поменять пароль администратора.





USE [base_zhertva]
GO
UPDATE [dbo].[Params]
SET [FileName] = 'users.usr1'WHERE [FileName] = 'users.usr'
GO
USE [base_zhertva]
GO
UPDATE [dbo].[Params]
SET [FileName] = 'users.usr'WHERE [FileName] = 'users.usr1'
GO