docker exec -it gitlab gitlab-psql -d mattermost_production
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm -r /etc/vmware/license.cfg | |
| cp /etc/vmware/.#license.cfg /etc/vmware/license.cfg | |
| /etc/init.d/vpxa restart | |
| vim-cmd vimsvc/license --show | grep expirationDate | |
| # see https://calvin.me/reset-esxi-evaluation-license/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Get-NetIPInterface | |
| Get-NetIPInterface -InterfaceAlias Ethernet2 -AddressFamily IPv4 | Select-Object -Property ifIndex | Set-NetIPInterface -InterfaceMetric 190 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # FURUKAWA F200 firmware upgrade | |
| ``` | |
| ssh [email protected] | |
| generate key ssh rsa bits 2048 | |
| ip scp server enable | |
| ssh-server enable version 2 | |
| save SIDE-A.cfg | |
| refresh | |
| ``` |
VMwareのOEM機能が搭載されたFlatcar Container Linuxがv2605.5.0にアップグレードされると、
OEM領域が古いままなためにライブラリのバージョンが一致せず、vmtoolsd.service が起動に失敗する。
# systemctl status vmtoolsd.service
● vmtoolsd.service - VMware Tools Agent
Loaded: loaded (/etc/systemd/system/vmtoolsd.service; enabled; vendor preset: enabled)
Drop-In: /etc/systemd/system/vmtoolsd.service.d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rem システムイメージのチェックを実行して破損していた場合はWindows Updateから入手して修復する | |
| dism /online /cleanup-image /restorehealth | |
| rem システムファイルの整合性違反を確認し、WinSxSを元にSystemを修復 | |
| sfc /scannow | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu | |
| LABEL maintainer Kyokuheki <[email protected]> | |
| ENV LANG=C.UTF-8 \ | |
| LC_ALL=C.UTF-8 \ | |
| DEBIAN_FRONTEND=noninteractive | |
| RUN set -x \ | |
| && apt-get update && apt-get install -y \ |