ターミナル
$ mysql.server start
-bash: mysql.server: command not found
$ mysql --version
mysql Ver 14.14 Distrib 5.7.33, for Linux (x86_64) using EditLine wrapper
$ sudo mysql -u root -p
Enter password:*************
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.33-0ubuntu0.16.04.1 (Ubuntu)
Copyright (c) 2000, 2021, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
phpファイル
<?php $pdo = new PDO( 'mysql:host=db;**Host**=**DBname**;charset=utf8mb4', '**User**', '**password**', ); $stmt = $pdo->query("SELECT 5 + 9"); $result = $stmt->fetch(); var_dump($result); ?>上記がコマンド、ファイルの内容です。
$ mysql.server start
Starting MySQL
SUCCESS!
となるようにしたいです。
Windows10にvagrantでUbuntu 16.04.7の環境を作りました。
あなたの回答
tips
プレビュー