超高速Webサーバー「LiteSpeed」をDebianにインストールする

2024/11/11に公開

超高速Webサーバー「 LiteSpeed 」とは?

概要

https://zenn.dev/tomoakinagahara/articles/7c31d6d1fc828a

管理画面

https://zenn.dev/tomoakinagahara/articles/3bfdff21ffd5ba

Debianにインストールする

  1. LiteSpeedリポジトリの追加
    wget -O - https://rpms.litespeedtech.com/debian/enable_lst_debian_repo.sh | bash
    
  2. LiteSpeedのインストール
    apt update
    apt install openlitespeed
    
  3. 起動とステータス確認
    systemctl start lsws
    
  4. ちゃんと起動したかステータスを確認する
    systemctl status lsws
    
  5. 管理画面にアクセス
    管理画面には通常、http://<your-server-ip>:7080でアクセスできる(初回ログイン時は、デフォルトのユーザー名とパスワードを設定)。

LiteSpeedリポジトリの追加に失敗した

手作業でリポジトリを追加する。

  1. リポジトリファイルの作成
    sudo nano /etc/apt/sources.list.d/lst_debian_repo.list
    
  2. 以下の行を追加
    bookwormは、Debian 12(Bookworm)のコードネーム。
    異なるバージョンを使用している場合は、コードネームを変更する。
    deb http://rpms.litespeedtech.com/debian/ bookworm main
    
  3. LiteSpeedのGPGキーをシステムに追加
    wget -O - https://rpms.litespeedtech.com/debian/lst_debian_repo.gpg | sudo tee /etc/apt/trusted.gpg.d/lst_debian_repo.gpg
    
  4. リポジトリを更新
    sudo apt update
    
  5. 再度、LiteSpeedを検索
    apt search openlitespeed
    

Discussion