業務用エアコン関連の技術情報、エラーコード、環境問題対策に関する別サイト「エアコンの安全な修理・適切なフロン回収」

nuy

LinuxTips(RedHat系)

Linuxのポート状況を確認する

Linuxのポート状況を確認するネットワーク上のどのコンピュータに接続するのかを「IPアドレス」で識別し、そのコンピュー...
LinuxTips(RedHat系)

ホスト名からIPアドレスを調べる

ホスト名からIPアドレスを調べるホスト名からIPアドレスを調べることを「正引き名前解決」と言います。この処理はネームサー...
LinuxTips(RedHat系)

ドメイン名からメールサーバーを調べる

ドメイン名からメールサーバーを調べる(-t mx)あるドメイン内でメールサーバーとして稼働しているホストを調べるには、そ...
LinuxTips(RedHat系)

ファイルシステムの一貫性をチェックする

ファイルシステムの一貫性をチェックするext2(Linux第2拡張ファイルシステム)及び、ext3(ジャーナル、自動記録...
LinuxTips(RedHat系)

接続デバイスのIRQを表示する

接続デバイスのIRQを表示する/proc/interruptsファイルは、IRQ(InterruptReQuest:割り...
LinuxTips(RedHat系)

PCIデバイスの情報を表示する

Display PCI device informationTo check the information of a PCI device in Linux, use the lspci command.This lspci command can be executed with the option "-v" to display more detailed information.You will need super user (root) privileges to run this command.
LinuxTips(RedHat系)

不要サービスを停止する

Linux starts many unnecessary services (programs) that are not used immediately after installation.Services that are not used consume server resources unnecessarily just by being started and running, which is not desirable for security measures.There are two commands to stop services: service and chkconfig, but the service command will cancel the settings and start the stopped service when the server is restarted.Stop the service with the chkconfig command, which will keep the service stopped even after restarting the server.
LinuxTips(RedHat系)

CPUの各種情報を表示する

CPUの各種情報を表示する●PCに搭載されているCPU情報を表示するPCに搭載されているCPU情報を表示する場合、「/p...
LinuxTips(RedHat系)

デーモンプロセスも含めて表示する

デーモンプロセスも含めて表示するLinuxの場合、システム維持の為に命令を与えなくても特別に動作しているプロセスがありま...
LinuxTips(RedHat系)

インストール済みのRPMパッケージを確認

Check the installed RPM packages.Red Hat Enterprise Linux and CentOS, which was developed based on Red Hat Enterprise Linux, use a package management tool called RPM (Redhat Package Manager).。RPM is a handy management tool that allows you to easily install and uninstall software and manage RPM packages with dependencies in mind, preventing you from accidentally removing RPM packages that you need.If you want to use this RPM, use the "rpm" command.Use the "-q" option to examine the RPM packages already installed, and the "-a" option to list the installed packages.rpm -qa" alone will show you all the packages installed on your Linux system, and is not suitable for checking specific packages.It is not suitable for checking a specific package.To check if a specific package is installed, specify the PRM package you want to check in "rpm -qa".
Rocky Linux8.4でサーバー構築

Rocky Linux8.4でサーバー構築 FTPサーバーインストール

1.vsftpdインストールダウンロードサイトからvsftpd-3.0.3-33.el8.x86_64.rpm をwgetで/usr/local/src/へダウンロード2.vsftpd  SSL/TLS化①自己署名の証明書を作成する(Let's Encrypt 等の信頼された正規の証明書を使用する場合は不要)
Rocky Linux8.4でサーバー構築

Rocky Linux8.4でサーバー構築 データバックアップ・復元

1.Webサイトデータバックアップ1-1./var/www/html配下のバックアップ①バックアップスクリプトファイルの作成[root@Lepard ~]# cd /optopt]# vi backup_html.sh#!/bin/bash
Ubuntu 18.04でサーバー構築

Ubuntu Server 18.04でサーバー構築 イメージの入手とインストール

Ubuntu Server 18.04インストールイメージのダウンロードUbuntu Serverのインストール用メディアはインターネット上の公式サイトからダウンロードできます。高速な回線さえあれば2~3分程度でOS自体をダウンロードすることができます。ダウンロードしたisoファイルからインストール用CD/DVDを作成する必要があります。isoファイルのダウンロード先は「Ubuntu 公式ダウンロードサイト」です。Ubuntu Server 18.04 インストール上記で作成したインストールディスクから起動できるようにBIOSを変更して、PCを起動する。
Ubuntu 18.04でサーバー構築

Ubuntu Server 18.04でサーバー構築 MySQLインストール

MySQLインストール1.必要なパッケージをインストールする# apt update# apt install mysql-server2.MySQLサーバのセキュリティ設定を行うMySQLサーバのセキュリティ関連の設定を行うためにmysql_secure_installtionというツールが用意されているのでこれを実行します。実行すると、質問形式でいくつかのセキュリティ設定がはじまります。
Ubuntu 18.04でサーバー構築

Ubuntu Server 18.04でサーバー構築 初期設定

1. rootパスワードを設定し、SUコマンドを利用$  sudo passwd rootpassword for ← 現在のユーザのパスワードEnter new UNIX password: ← 設定するrootパスワードを入力Retype new UNIX password: ← 設定するrootパスワードを再入力passwd: password updated successfully2. SSHの初期設定$ su -パスワード :# cd /etc/ssh# vi sshd_configPermitRootLogin no ← #rootでログイン不可にする