⚡
超高速Webサーバー「LiteSpeed」をDebianにインストールする
超高速Webサーバー「 LiteSpeed 」とは?
概要
管理画面
Debianにインストールする
- LiteSpeedリポジトリの追加
wget -O - https://rpms.litespeedtech.com/debian/enable_lst_debian_repo.sh | bash
- LiteSpeedのインストール
apt update apt install openlitespeed
- 起動とステータス確認
systemctl start lsws
- ちゃんと起動したかステータスを確認する
systemctl status lsws
- 管理画面にアクセス
管理画面には通常、http://<your-server-ip>:7080
でアクセスできる(初回ログイン時は、デフォルトのユーザー名とパスワードを設定)。
LiteSpeedリポジトリの追加に失敗した
手作業でリポジトリを追加する。
- リポジトリファイルの作成
sudo nano /etc/apt/sources.list.d/lst_debian_repo.list
- 以下の行を追加
bookworm
は、Debian 12(Bookworm)のコードネーム。
異なるバージョンを使用している場合は、コードネームを変更する。deb http://rpms.litespeedtech.com/debian/ bookworm main
- LiteSpeedのGPGキーをシステムに追加
wget -O - https://rpms.litespeedtech.com/debian/lst_debian_repo.gpg | sudo tee /etc/apt/trusted.gpg.d/lst_debian_repo.gpg
- リポジトリを更新
sudo apt update
- 再度、LiteSpeedを検索
apt search openlitespeed
Discussion