macsplex.com 로그인

검색

조회 수 3595 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄
Extra Form

참고: http://forcecore.tistory.com/1238

http://www.linuxjournal.com/content/rebooting-magic-way

Rebooting the Magic Way

 
 in

If you have ever had a hard drive fail on a remote server you may remember the feeling you had after trying to issue the following commands:

    # reboot
    bash: /sbin/reboot: Input/output error
    # shutdown -r now
    bash: /sbin/shutdown: Input/output error

Obviously, there is a problem with your drive. These commands are failing because the kernel is unable to load the /sbin/reboot and /sbin/shutdown binaries from the disk so that it can execute them.

A fsck on the next boot might be able to correct whatever is wrong with the disk, but first you need to get the system to reboot. If your machine is located at a managed hosting provider then you could submit a reboot ticket, but you'll have to wait for someone to take responsibility.

Wouldn't it be nice if there was a way to ask the kernel to reboot without needing to access the failing drive? Well, there is a way, and it is remarkably simple.

The "magic SysRq key" provides a way to send commands directly to the kernel through the /proc filesystem. It is enabled via a kernel compile time option, CONFIG_MAGIC_SYSRQ, which seems to be standard on most distributions. First you must activate the magic SysRq option:

    echo 1 > /proc/sys/kernel/sysrq

When you are ready to reboot the machine simply run the following:

    echo b > /proc/sysrq-trigger

This does not attempt to unmount or sync filesystems, so it should only be used when absolutely necessary, but if your drive is already failing then that may not be a concern.

In addition to rebooting the system the sysrq trick can be used to dump memory information to the console, sync all filesystems, remount all filesystems in read-only mode, send SIGTERM or SIGKILL to all processes except init, or power off the machine entirely, among other things.

Also, instead of echoing into /proc/sys/kernel/sysrq each time you can activate the magic SysRq key at system boot time using sysctl, where supported:

    echo "kernel.sysrq = 1" >> /etc/sysctl.conf

If you would like to learn more about magic SysRq you can read the sysrq.txt file in the kernel documentation.

 

????: http://www.linuxjournal.com/content/rebooting-magic-way





--------------------------------------------------광고(Advertising)-------------------------------------------------------------------------------------



리눅스 Tip

Linux Tip

  1. 1. Apache + PHP + ?MySQL + GD 설치

    CategoryDebian
    Read More
  2. A- CLI System Monitoring Tools & Commands

    Read More
  3. Apache Mod_rewrite Lesson

    CategoryApache2
    Read More
  4. apache2 could not reliably determine 에러발생시

    CategoryDebian
    Read More
  5. apache2 ssl 모드 활성 및 비활성화 명령어

    CategoryApache2
    Read More
  6. apache2 접속자수 확인

    CategoryApache2
    Read More
  7. apt-get 실행시 Could not get lock /var/lib/dpkg/lock 에러발생시

    CategoryUbuntu
    Read More
  8. Arch 저장소(repo)추가 방법

    CategoryArch
    Read More
  9. audacious plugin 폴더위치

    Read More
  10. Bash Keyboard Shortcuts

    Read More
  11. cache memory delete command

    Read More
  12. centos 6 kvm bridge setting

    CategoryCentOS
    Read More
  13. centos 6 KVM tip

    CategoryCentOS
    Read More
  14. centos 6 monitorx install

    CategoryCentOS
    Read More
  15. centos 6.7 kvm install after iso permission denied

    CategoryCentOS
    Read More
  16. CentOS 7 네트워크 설정

    CategoryCentOS
    Read More
  17. CentOS 8 웹콘솔(Cokpit) 설치하기

    CategoryCentOS
    Read More
  18. CentOS APM 설치운영

    CategoryCentOS
    Read More
  19. centos mysql 암호초기화

    CategoryCentOS
    Read More
  20. CentOS webpanel

    CategoryCentOS
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 Next
/ 8