tail -f /dev/null

If you haven't had any obstacles lately, you're not challenging. be the worst.

Pgpool, PostgreSQL の connection tuning

Pgpool num_init_children num_init_children は client の同時接続上限数 (prefork する Pgpool-II process 数) default 32 本 num_init_children が上限に達した場合, client は既存 process への接続が閉じるまで待たされる. reserved_connections が1以…

文字コードと改行コードの確認 (PowerShell と nkf で)

用意するもの Get-WmiObject Win32_OperatingSystem SystemDirectory : C:\Windows\system32 Organization : Amazon.com BuildNumber : 14393 RegisteredUser : EC2 SerialNumber : 00376-40000-00000-AA753 Version : 10.0.14393 $PSVersionTable.PSVersion…

IIS: Root application用のApplication Poolが存在する構成にするか否か

Root applicationとは IIS Site作成時にdefaultで作成されるapplication。 1SiteにつきRoot applicationが最低1つ以上存在する。 Root applicationを含む個々のapplicationはRoot virtual directoryに含まれる。 applicationhost.config 上のapplication PAT…

CloudFront経由での静的objectのresponse statusを必ず200にしたい

aws

背景 CloudFrontの設定画面には、以下のようなobject cachingに関する欄が存在する。 Select Use Origin Cache Headers if your origin server is adding a Cache-Control header to control how long your objects stay in the CloudFront cache. Select Cu…

IIS: Enhanced LoggingでX-Forwarded-For fieldを追加する

作業メモ。 Environment IIS10 当該featureは8.5 ~ PowerShell webadminstration module PS> Add-WebConfigurationProperty -pspath 'MACHINE/WEBROOT/APPHOST' -filter "system.applicationHost/sites/site[@name='<site_name>']/logFile/customFields" -name "." -val</site_name>…

Mac から console 接続を行い Cisco Router 892J の機器設定を行う

Cisco Router に接続し, 機器の設定を行う. Cisco router, switch は IOS が稼働しており, PC から console 接続を行い IOS を操作して設定を行う. Environment Router Cisco 892J Console (Rollover) cable Cisco 純正 RS-232C interface USB serial 変換 c…

IIS10 用語や設定メモ

memo. 用意するもの IIS10.0.1 HTTP protocol 10.0.1では HTTP/1.1, HTTP/2.0 をサポート。 クライアントサイドのprotocolによりよしなに切り替えてくれる。 Application pool IIS Web Application worker processの設定を行う。 Worker processはweb applic…

AWS RI購入時のキャパシティエラーについて

aws

Reserved Instance購入時にCapacity不足の場合がある。需要に応じて適宜キャパシティも供給されるが、供給数が元々少なかったり、連休直前で大量購入があった場合等はキャパシティが枯渇する場合がある。 Only show offerings that reserved capacity カート…

Fluentd: trouble shooting on Windows Server

Envrironment 確認環境下 OS: Windows Server 2016 td-agent: 3.1.1 確認したのは Windows Server 2016でのみだが、Linuxでも一部当てはまる。 buffer enqueue中にtd-agentのconfを書き換えてrestartしてしまった 何かしら例えばchunkがenqueue出来ずbuffer…

de:code2019

行ってきたので内容をメモった。Azureは未経験。 CD12 Kubernetes関連 Session: CD12 / マネージド Kubernetes ガチ本番運用 in ZOZOTOWN Date: 2019/05/29 Place: 港区芝公園ザ・プリンス パークタワー東京 Official URL Presentation Kubernetes運用の目的…

PowerShell で A -> B account へ STSRole

PowerShell で実施する手順をメモ. # Import AWS module. Set-ExecutionPolicy RemoteSigned Import-Module AWSPowerShell # Set AWS credentials. Set-AWSCredential -AccessKey xxx -SecretKey xxx -StoreAs A_default Set-AWSCredentials -ProfileName A_…

Invoke-WebRequest : The underlying connection was closed: An unexpected error occurred on a send.

環境 Windows server 2016 Host Application: C:\Windows\System32\WindowsPowerShell\v1.0\powershell_ise.exe PSVersion: 5.1.14393.3471 PSCompatibleVersions: 1.0, 2.0, 3.0, 4.0, 5.0, 5.1.14393.3471 BuildVersion: 10.0.14393.3471 CLRVersion: 4.0.…

AWS EBS volume size 拡張

Linux OS (Centos 7) Extend volume size # ex. modify root volume size 10GiB to 20GiB $ aws ec2 modify-volume --volume-id vol-xxx --size 20 --region ap-northeast-1 Check File system $ sudo file -s /dev/xvd* /dev/xvda: x86 boot sector; partit…

chefを利用するのにbundle installを辞めて、chefDKを採用

environment Chef Development Kit: 3.8.14 chef-client version: 14.10.9 berks version: 7.0.7 kitchen version: 1.24.0 inspec version: 3.6.6 background chefを利用するのに bundle install して利用していたが、依存関係で嵌ると沼から抜け出せない事…

machinekeyについて

machinekeyとは machineKey 要素 (ASP.NET 設定スキーマ) | Microsoft Docs 主にform認証data、view(html)に出力される管理情報(state data)の暗号化、復号化、検証を行う目的で使われるkey。 認証用cookieやviewにおいて、改ざん防止・暗号化が可能。 machi…