Skip to content

Instantly share code, notes, and snippets.

View kazusato's full-sized avatar

Kazuhiko Sato kazusato

View GitHub Profile
@kazusato
kazusato / CentOS7_change_IP_address.md
Last active February 20, 2018 22:09
CentOS7でのIPアドレスの変更

# nmcli connection modify enp0s3 192.168.11.81/24

これで、/etc/sysconfig/network-scripts/ifcfg-enp0s3に反映される。

その他、このページ参照。 ただし、ここの記載だと、上記nmcliコマンドを実行した直後にip addrで新しいIPアドレスが表示されるように読めるが、手元の環境では

# systemctl restart network

して初めて反映された。

@kazusato
kazusato / helm_install_init.md
Created February 28, 2018 20:38
helm導入

helm導入時のServiceAccount, ClusterRoleBindingの設定

背景

Installing Helmに従ってhelmを導入してみたが、

$ helm install stable/mysql

としたところ、

$ Error: no available release name not found

というエラーが出た。

TeX Liveインストール on CentOS Docker image

最終的にはDockerfileにまとめる予定だが、作業メモとして残しておく。

注意点

以下のパッケージが必要:

  • perl
  • perl-Digest-MD5
  • wget
# Oracle Database 12c CDB/PDB
- CDB = Container Databae
- PDB = Pluggable Database
## tnsnames.ora
```
pdb1=
(description =
$ aws s3 ls
$ aws s3 ls s3://bucketname
$ aws s3 ls s3://bucketname/folder/
$ aws s3 cp --recursive s3://bucketname/folder/ .

CentOS7へのざっくり導入手順

おおむね3.1 Installing an RPM Package に書かれている通りだが、事前にEPELを有効にしておく必要があった。

# yum update
# yum install -y https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm
# vi /etc/yum.repo.d/edb.repo
# ... enable and update username/password for edbas10, enterprisedb-tools and enterprisedb-dependencies

インストール

VirtualBoxからパッケージをダウンロードし、

# dpkg -i virtualbox-5.2_5.2.16-123759_Ubuntu_bionic_amd64.deb

でインストールするが、途中でエラーが発生した。

以下のページに従えば、正常に起動するようになった。

kubectlの補完をエイリアスにも適用するには

kubectlの補完

kubectl completion -hでも出てくる通り、

$ kubectl completion bash > ~/.kube/completion.bash.inc
$ printf "
# Kubectl shell completion
$ source '$HOME/.kube/completion.bash.inc'

Run Zookeeper and Kafka on CentOS

Zookeeper

A file "zookeeper.out" will be created in the current directory.

$ wget http://ftp.jaist.ac.jp/pub/apache/zookeeper/zookeeper-3.4.13/zookeeper-3.4.13.tar.gz
$ tar xvfz zookeeper-3.4.13.tar.gz
$ sudo useradd zookeeper