2020-06-19から1日間の記事一覧

Windows WSLのUbuntuにRedisをインストールする

開発環境をWindowsにしたので環境構築のメモ # redis-serverのインストール sudo apt install redis-server # redis の再起動 sudo service redis-server restart # 自動起動設定 systemctl enable redis-server

Windows WSLのUbuntuにPostgreSQLをインストールする

開発環境をWindowsにしたので環境構築のメモ # PGのインストール sudo apt install postgresql # 起動 sudo service postgresql start # 自動起動設定 systemctl enable postgresql # PG用ユーザーの作成 sudo -u postgres -i createuser -d -U postgres -P …

Windows WSLのUbuntuにElasticsearchとkuromojiをインストールする

開発環境をWindowsにしたので環境構築のメモ Elasticsearchのインストール wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee -a /et…