11.Nas_1


새창 작성 수정 목록 링크 Edit G카랜다 HDD HDD HDD 게시물 주소 복사


●esxi작업) [VMware] ESXi ver 7.0.2 부팅시 스크립트 자동 실행하기

♨ 카랜더 일정 :
  • 링크

  • 첨부

  • 컨텐츠 정보

    본문

    ● [VMware] ESXi 부팅시 스크립트 실행하기

    esxi ver7.0.2 에서 자동 실행 파일

    nano /etc/rc.local.d/local.sh

    추가내용

    # nano edit start 202208151525

    # find / -name nano

    cp /vmfs/volumes/6167e460-4819a5ce-dfc1-1cfd08738685/ESXi_backup/nano-2.2.2-3.1.x86_64/usr/bin/nano /bin/nano


    3232235521_1660544803.355.png

    [root@localhost:/vmfs/volumes/6167e460-4819a5ce-dfc1-1cfd08738685/ESXi_backup] cat  /etc/rc.local.d/local.sh
    #!/bin/sh ++group=host/vim/vmvisor/boot
    # local configuration options
    # Note: modify at your own risk!  If you do/use anything in this
    # script that is not part of a stable API (relying on files to be in
    # specific places, specific tools, specific output, etc) there is a
    # possibility you will end up with a broken system after patching or
    # upgrading.  Changes are not supported unless under direction of
    # VMware support.
    # Note: This script will not be run when UEFI secure boot is enabled.
    # ==================  add ..................start  ===============
    # this filename :  /etc/rc.local.d/local.sh
    # vm auto start
    # VM_autostart_test2_ip11_dsm7_1.sh
    # VM_autostart_11qkr_ds3615_dsm7.sh
    cd /vmfs/volumes/6167e460-4819a5ce-dfc1-1cfd08738685/ESXi_backup
    /vmfs/volumes/6167e460-4819a5ce-dfc1-1cfd08738685/ESXi_backup/VM_autostart_11qkr_ds3615_dsm7.sh &
    /vmfs/volumes/6167e460-4819a5ce-dfc1-1cfd08738685/ESXi_backup/VM_autostart_test3.sh &
    cd ~
    # teregram message at esxi start
    # TOKEN = 5245210519:AAGAiz3V3Eiv-HxPdx-??????Yyey04
    # CHATID = 778???077
    esxcli network firewall ruleset set -e true -r httpClient &
    # wget --post-data="chat_id=CHATID&text=ESXi_6.7_Booted_Completed" https://api.telegram.org/botTOKEN/sendMessage
    wget --post-data="chat_id=778557077&text=ESXi70_Booted_ok" https://api.telegram.org/bot5245210519:AAGAiz3V3Eiv-HxPdx-??????TYyey04/sendMessage
    esxcli network firewall ruleset set -e false -r httpClient &
    # nano edit start 202208151525
    # find / -name nano
    cp /vmfs/volumes/6167e460-4819a5ce-dfc1-1cfd08738685/ESXi_backup/nano-2.2.2-3.1.x86_64/usr/bin/nano /bin/nano
    
    # usb start 202208151537
    /etc/init.d/usbarbitrator start
    chkconfig usbarbitrator on
    # ===================================== add....end =========
    exit 0
    [root@localhost:/vmfs/volumes/6167e460-4819a5ce-dfc1-1cfd08738685/ESXi_backup]
    

    파일 정보

    3232235521_1660544864.9488.png

    파일저장위치

    ls /vmfs/volumes/6167e460-4819a5ce-dfc1-1cfd08738685/ESXi_backup/ -lrt

    3232235521_1660546884.5938.png

    아래는 정보 참조 바랍니다.

    부팅하는 동안 명령을 실행하도록 ESX/ESXi에서 rc.local 또는 local.sh 파일 수정(2043564)


    최종 업데이트: 2021. 10. 8.카테고리: 방법총 조회수: 73286 13구독하다

    목적

    이 문서에서는 부팅 프로세스 동안 ESX/ESXi에서 명령을 실행하도록 rc.local 또는 local.sh 파일을 수정하는 방법에 대한 정보를 제공합니다. 이 프로세스는 사용된 ESX/ESXi 버전에 따라 다릅니다. 참고: 보안 부팅(UEFI)의 보안 강화로 인해 이러한 옵션을 사용할 수 없습니다.

    해결

    ESX/ESXi 부팅 프로세스 중에 명령을 실행하려면 rc.local 또는 local.sh 구성 파일이 수정됩니다.



    참고 : VMware에서는 이러한 파일을 수정하지 않을 것을 권장합니다. 특별한 사용 사례 시나리오에서 또는 VMware 기술 지원의 지시가 있는 경우에만 이러한 파일을 수정해야 합니다. 대부분의 ESX/ESXi 구성 옵션 및 드라이버 매개변수는 재부팅 후에도 지속되며 다른 방법을 사용하여 설정됩니다. 자세한 내용 은 ESX/ESXi용 고급 옵션 구성(1038578) 및 ESX/ESXi에서 고급 드라이버 모듈 매개변수 구성(1017588) 을 참조하십시오 .

    ESXi 5.1/5.5/6.x/7.x

    ESXi 5.1 부팅 프로세스 중에 명령을 실행하려면 /etc/rc.local.d/ 디렉토리 에 있는 local.sh 파일 을 수정하십시오.

    추가예)

     ethtool --pause vmnic0 autoneg off

    를 추가하는 방법

    local.sh 파일 을 수정하려면 :

    nano 에디터를 이용 수정

    cd /etc

    nano local.sh

    예를 들면 다음과 같습니다.

    • #!/bin/sh
    • #!/bin/sh
    • # local configuration options
    • # Note: modify at your own risk!  If you do/use anything in this
    • # script that is not part of a stable API (relying on files to be in
    • # specific places, specific tools, specific output, etc) there is a
    • # possibility you will end up with a broken system after patching or
    • # upgrading.  Changes are not supported unless under direction of
    • # VMware support.

    • # Note: This script will not be run when UEFI secure boot is enabled.

    • ethtool --pause vmnic0 autoneg off
    • exit 0

    이 예에서 흐름 제어, 자동 협상을 비활성화 하는 ethtool 명령은 exit 0 행 위에 추가됩니다.

    참고 :

    • exit 0 행 뒤에 추가된 명령 은 실행되지 않습니다.
    • 종료 0 전에 추가 명령을 추가할 수 있습니다 .
    • 명령은 나열된 순서대로 실행됩니다.
    • 일반적으로 local.sh 파일 의 권한을 수정할 필요는 없습니다 . ESXi 5.1에서는 기본적으로 루트 사용자에게 이 파일에 대한 읽기 및 쓰기 권한이 있습니다.
    • UEFI 보안 부팅이 활성화되면 스크립트가 실행되지 않습니다.

    • ESXi 4.x/5.0

      Note: The information in this section applies only to ESXi, and not to ESX.

       

      To execute a command during the ESXi 4.x and 5.0 boot process, modify the rc.local file located at the /etc/ directory.

       

      To modify the rc.local file:

      1. Open the rc.local file using the vi editor. For more information, see Editing configuration files in VMware ESXi and ESX (1017022).
      2. Add the commands to be executed at the end of the file. For example:

        #!/bin/sh

        export PATH=/sbin:/bin

        log() {
        echo "${1}"
        /bin/busybox logger init "${1}"
        }

        # execute all service retgistered in ${rcdir} ($1 or /etc/rc.local.d)
        if [ -d "${1:-/etc/rc.local.d}" ] ; then
        for filename in $(find "${1:-/etc/rc.local.d}" | /bin/busybox sort) ; do
        if [ -f "${filename}" ] && [ -x "${filename}" ]; then
        log "running ${filename}"
        "${filename}"
        fi
        done
        fi

        # disables flow control auto-negotiation for vmnic0


        ethtool --pause vmnic0 autoneg off

        In this example, the ethtool command to disable flow control, auto-negotiation is added at the end of the file, on a new line.

        Notes:
        • Additional commands are added on separate lines within the file.
        • The commands are executed in the order listed.
        • Commands are disabled using the # characters at the beginning of the line.
        • Usually, it is not necessary to modify the permissions of the /etc/rc.local file. In ESXi 4.x and 5.0, by default, the root user has read and write permissions on this file.

     https://11q.kr 에 등록된 자료 입니다. ♠ 정보찾아 공유 드리며 출처는 링크 참조 바랍니다♠1.png

    [ 추가 정보 ... 더보기) ]
    뷰PDF 1,2



    office view

    관련자료

    댓글목록

    등록된 댓글이 없습니다.

    목록

    새창 작성 수정 목록 링크 Edit G카랜다 HDD HDD HDD 게시물 주소 복사




    Total 1,677 / 2 Page
    [ 아미나 로그 클릭시 https 링크에 주의요망 으로 링크주소 출력 되는것 ] 댓글 1

    아미나 로그 클릭시 https 링크에 주의요망 으로 링크주소 출력 되는것\\192.168.0.6\web\g5s\thema\Basic\head.p…

    [ 림스 아미나 모바일 글보기 엔터 줄바꿈 하기...실패로 최신버전 220 ] 댓글 2

    안녕하세요 모바일에서 줄바꿈이 되지 않습니다아래는 림스 모바일에서는 정상인데아미나 스킨 모바일에서는 줄바꿈이 되지 않내요아미나 스킨 모바일 줄바…

    [ 시놀로지 dsm 6.02 ipcamera foscam 8918설정 및 qcam onvif지원 카메라2개 붙이… ] 댓글 3

    시놀로지 호환 ipcam/foscam fi8918w 붙이기dsm7.1 재설정카메라 반대로 뒤집어 고정시 화면 위아래 반전1)먼저 저장소 설정2)…

    [ 홈피 설치 준비 처음에 MariaDB 설치/phpmyadmin설치 작업 ] 댓글 1

    홈페이지 처음 synology를 구입하여phpmyadmin 설치후패쓰워드 설정 방법홈피 만들기전에 mysql db만들어야 홈피 설치가 가능함니다…

    [ 시놀로지NAS DS712 MEMORY 메모리 변경 증설 ]

    \r\n\r\n\r\n>\r\n>\r\n■ 11q.kr은 정보를 찾아 공유 합니다. https://11q.kr.com\r\nhttps…

    [ 로그인 후 원래 위치로 되돌아 가기(모르는 분들을 위하여) ] 댓글 1

    로그인 후 원래 위치로 되돌아 가기(모르는 분들을 위하여)롤프스2014.12.09 22:15:45조회572댓글5관련링크http://unabate…

    [ file station 2giga 파일 업로드 문제 조치 ]

    ♠file station에서 2giga 파일 업로드 문제 조치출처http://cafe.naver.com/synologynas/71815♠ shi…

    [ 제 web 서버 대표홈 이동 방법입니다 ] 댓글 2

    제 web 서버 대표홈 이동 방법입니다//==============root에서 index.php 만듭니다 =============//======…

    [ 헤놀로지 설치준비) 홈서버의 모든것 / 익스트림 ]

    헤놀로지 설치준비) 홈서버의 모든것 / 익스트림출처 :http://extrememanual.net/homeidc♠\r\n♠ https://11q…

    [ sudo poweroff 시놀로지 dsm6종료 않될때 putty ssh 모드로 접속 ] 댓글 2

    dsm6 자체 상단 사람 표시아콘에서 종료버튼을 눌러도 종료 되지 않는다\r\n종료 메세지는 나오지만 dsm 접속 상태 종료 되지 않는다\r\n…

    [ 해결)접근에러 아미나빌더 베너 사진 링크1 이동시 ] 댓글 1

    >안녕하세요\r\n아미나빌더를 잘사용 하고 있습니다\r\n아래와 같은 조건에 비회원 접근에 접근에러가발생합니다\r\n어디를 설정해야 하는지…

    [ vmware 헤놀로지 실행 메세지 및 sn,mac 변경을 osfmount_x64.exe을 이용하여 변경 하… ] 댓글 2

    vmware 헤놀로지 실행 메세지 및 sn,mac 변경을 osfmount_x64.exe을 이용하여 변경 하기마운트 파일 synoboot.img를…

    [ shimss home 사이트 속도 측정 ] 댓글 1

    shimss home 사이트 속도 측정https://tools.pingdom.com/#!/x3kcE/11q.kr/g5s저의 헤놀로지 vmware…

    [ 시놀로지나스 dsm 2중보안 접속 opt 설정시 화면 ]

    > 상기는 2중보안 설정시 qr 코드 스캔후otp설치후 초기진입시 otp번호 입력시 번호 발생기 내용입니다이후 dsm접속시>\r\n&…

    [ PIWIGO 2.9 설치 사례 입니다.// 한글 문제점 수정 저장 ] 댓글 1

    PIWIGO 2.9 설치 사례 입니다.구글에서 piwigo 찾아 사이트 접속 다운로드 합니다http://piwigo.org/basics/down…


    ♥간단_메모글♥


    최근글


    새댓글



    PHP 안에 HTML ☞ 홈페이지 화면갱신 시간은 ♨
    ▶ 2024-06-29 13:05:06

    오늘의 홈 현황


    • 현재 접속자♨ 548 명
    • 오늘 가입자※ 2 명
    • 어제 가입자※ 4 명
    • 주간 가입자※ 8 명
    • 오늘 방문자 1,618 명
    • 어제 방문자 2,007 명
    • 최대 방문자 13,042 명
    • 전체 방문자 4,402,780 명
    • 전체 게시물※ 8,663 개
    • 전체 댓글수※ 24,792 개
    • 전체 회원수 11,076 명

    QR코드


    ☞ QR코드 스캔은 kakao앱 자체 QR코드

    알림 0








    최신글↑