Mac의 MySQL(M1)

2155 단어 beginnersmysql

전제 조건


  • 패키지 관리자로 사용하겠습니다.

  • /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    


    MySQL 설치


  • MySQL 설치:

  • brew install mysql
    


  • MySQL을 설정하기 전에 brew services를 시작해야 합니다.

  • brew services start mysql
    


    Note: To stop mysql we set

    brew services stop mysql
    


    MySQL 설정



    비밀번호 없이


  • 다음을 입력합니다.

  • mysql -uroot
    


    세션이 켜져 있으면 다음을 입력하여 세션을 종료할 수 있습니다.

    mysql> exit
    


    암호로


  • 다음을 입력합니다.

  • mysql_secure_installation
    


    Note: ”Validate password component" needs a secure sequence of characters to set the password, this include as minimum 8 characters and other more patterns.
    If we set y (yes), it'll require that pattern, if we don't want that it, we just set n (no).


  • 설치 시 권장 답변

  • # Remove anonymous users?:
    y
    #Disallow root login remotely?:
    n
    # Remove test database and access to it?:
    y
    # Reload Privilege tables now?:
    y
    


  • 비밀번호로 mysql 세션을 시작하려면 다음을 입력하면 됩니다.

  • mysql -uroot -p
    


    그리고 비밀번호를 묻습니다.

    좋은 웹페이지 즐겨찾기