четверг, 11 октября 2012 г.

Перепрошивка ZTE Blade

http://not-about-it.blogspot.com/2012/05/zte-blade.html

вторник, 2 октября 2012 г.

Создание pfx


openssl pkcs12 -export -out ssl.pfx -inkey ssl_name.key -in ssl_name.crt -CAfile ca.crt

openssl pkcs12 -export -out .p12 -inkey .key -in .crt

Из pfx получить private key


Procedure


  1. Take the file you exported (e.g. certname.pfx) and copy it to a system where you have OpenSSL installed. Note: the *.pfx file is in PKCS#12 format and includes both the certificate and the private key.
  2. Run the following command to export the private key: openssl pkcs12 -in certname.pfx -nocerts -out key.pem -nodes
  3. Run the following command to export the certificate: openssl pkcs12 -in certname.pfx -nokeys -out cert.pem
  4. Run the following command to remove the passphrase from the private key: openssl rsa -in key.pem -out server.key 



http://office.microsoft.com/en-us/sharepoint-portal-server-it/step-4-export-the-client-certificate-with-a-private-key-pfx-file-for-use-on-additional-client-computers-and-index-management-servers-HA001164784.aspx



Из pfx получить crt

https://support.stackpath.com/hc/en-us/articles/230841967-Converting-pfx-to-a-crt-key-files

четверг, 21 июня 2012 г.

IIS + Powershell

http://blogs.msdn.com/b/carlosag/archive/2008/02/11/microsoftwebadministrationinpowershell.aspx

http://stackoverflow.com/questions/6186888/loop-through-all-bindings-configured-in-iis-with-powershell

среда, 29 февраля 2012 г.

MICROSOFT.ACE.OLEDB.12.0 IS NOT REGISTERED

THE 'MICROSOFT.ACE.OLEDB.12.0' PROVIDER IS NOT REGISTERED ON THE LOCAL MACHINE

Windows 2008 R2
Пакет Microsoft Access Database Engine 2010 Redistributable установлен.

Нужен пакет
2007 Office System Driver: Data Connectivity Components

В реестре, после установки, должен быть раздел:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\12.0\

понедельник, 6 февраля 2012 г.

Дописать в каждую ячейку БД MySQL текст

update table_name set filed_name=concat(filed_name,'add_text')

table_name - имя БД
filed_name - имя ячейки
add_text - что добавить

четверг, 2 февраля 2012 г.

Разрешение на загрузку файлов более 200Кб в ASP

IIS 7.5 + ASP
По-умолчанию  возможно загружать файлы размером не более 200Кб

Увеличения размера загрузки:

1. Заходим в оснастку IIS
2. Выбираем нужный сайт и заходим в ASP
3. Изменяем параметр Maximum Requesting Entry Body Limit

Если нужно изменить для всех сайтов, то

1. Заходим в оснастку IIS
2. Выбираем сервер и заходим в ASP
3. Изменяем параметр Maximum Requesting Entry Body Limit



пятница, 27 января 2012 г.

Powershell + IIS

Управление IIS из PowerShell

Установить Windows PowerShell Snap-In.

http://www.iis.net/download/powershell

Запустить PowerShell
Подключить модуль
Import-Module WebAdministration

Выдает ошибку:
Import-Module : The following error occurred while loading the extended type data file:
Microsoft.PowerShell, C:\Windows\system32\WindowsPowerShell\v1.0\Modules\WebAdministration\iisprovider.types.ps1xml : File skipped because it was already present from "Microsoft.PowerShell".

Можно сделать так:

Set-ExecutionPolicy RemoteSigned
Закрыть powershell и снова открыть.

После этого подключаем модуль
Import-Module WebAdministration


Смотрим
get-psdrive


и видим что есть диск IIS

Чтоб подписать скрипт:
http://www.iisworkstation.com/2009/06/troubleshooting-iis-powershell-module.html


среда, 4 января 2012 г.

Описание работы LVM

Описание работы LVM
http://xgu.ru/wiki/LVM

Создание LVM
http://www.firefly.by/use-lvm/