sql >> データベース >  >> RDS >> Mysql

MysqlのVagrantポートフォワーディング

    ついにそれを機能させることができました-

    /etc/mysql/my.cnfを編集します ファイルして、どちらかを確認してください

    • bind-address = 0.0.0.0があります
    • または、#bind-address ...の行にコメントを付けます

    my.cnfファイルのmysqldセクションに追加する必要がある場合があります:

    [mysqld]
    bind-address = 0.0.0.0
    

    変更後は必ずmysqlサーバーを再起動してください

    $ sudo service mysql restart
    

    次に、ホストから接続できます-そのため、最初に次のようなエラーが発生しました

    $ mysql -h127.0.0.1 -P 3309 -uroot -p
    Enter password:
    ERROR 1130 (HY000): Host '172.16.42.2' is not allowed to connect to this MySQL server
    

    だから私はゲストに戻ってやった

    [email protected]:~$ mysql -h127.0.0.1 -uroot -p
    ...
    mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'172.16.42.2' WITH GRANT OPTION;
    Query OK, 0 rows affected (0.00 sec)
    
    mysql> FLUSH PRIVILEGES;
    Query OK, 0 rows affected (0.00 sec)
    

    その後、ホストマシンからの接続に問題はありませんでした

    $ mysql -h127.0.0.1 -P 3309 -uroot -p
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 36
    Server version: 5.5.44-0ubuntu0.12.04.1 (Ubuntu)
    


    1. 2つの日付の間の金曜日の数

    2. mysqlregexutf-8文字

    3. Androidアプリケーションで使用するPHPAPIの保護

    4. MySQLにビュークエリにINDEXを使用させるにはどうすればよいですか?