facebook twitter hatena line email

「Linux/コマンドメモ/自動起動コマンド設定方法」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(自動起動コマンド設定方法)
(systemctlで自動起動コマンド設定方法)
 
(同じ利用者による、間の3版が非表示)
行1: 行1:
 +
 +
==systemctlとchkconfigについて==
 +
chkconfigはsystemctlに変更された(CentOS7~)
  
 
==systemctlで自動起動コマンド設定方法==
 
==systemctlで自動起動コマンド設定方法==
 +
自動起動一覧
 +
systemctl list-units --all --type=service
 
自動起動指定のサービス
 
自動起動指定のサービス
 
  systemctl list-units --all --type=service | grep mysql
 
  systemctl list-units --all --type=service | grep mysql
行9: 行14:
 
自動起動off
 
自動起動off
 
  systemctl disable mysqld
 
  systemctl disable mysqld
 +
開始
 +
systemctl start mysqld
 +
停止
 +
systemctl stop mysqld
 +
再起動
 +
systemctl restart mysqld
 +
起動確認
 +
systemctl status mysqld
  
 
==chkconfigで自動起動コマンド設定方法==
 
==chkconfigで自動起動コマンド設定方法==

2022年9月14日 (水) 21:13時点における最新版

systemctlとchkconfigについて

chkconfigはsystemctlに変更された(CentOS7~)

systemctlで自動起動コマンド設定方法

自動起動一覧

systemctl list-units --all --type=service

自動起動指定のサービス

systemctl list-units --all --type=service | grep mysql

状態確認

systemctl is-enabled mysqld

自動起動on

systemctl enable mysqld

自動起動off

systemctl disable mysqld

開始

systemctl start mysqld

停止

systemctl stop mysqld

再起動

systemctl restart mysqld

起動確認

systemctl status mysqld

chkconfigで自動起動コマンド設定方法

/sbin/chkconfig --list
/sbin/chkconfig php-fpm on
/sbin/chkconfig php-fpm off

rc.localで自動起動コマンド設定方法

vi /etc/rc.d/rc.local
touch /var/lock/subsys/local
# Apache の起動(例
/usr/local/apache/bin/apachectl restart