#なぜ変わったか 的なことを書く。
          Created
          June 2, 2016 05:22 
        
      - 
      
- 
        Save nishinoshake/86bb384ec9fdda4eb2c5d11f5509d783 to your computer and use it in GitHub Desktop. 
    systemdの使い方
  
        
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #起動 | |
| sudo systemctl start httpd | |
| #停止 | |
| sudo systemctl stop httpd | |
| #再起動 | |
| sudo systemctl restart httpd | |
| #状態確認 | |
| sudo systemctl status httpd | |
| #有効化されているUnitの一覧 | |
| systemctl list-units | |
| #自動起動 | |
| sudo systemctl enable httpd | |
| #自動起動させない | |
| sudo systemctl disable httpd | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment