Ubuntu16.04 MySQL 설치

1631 단어 MySQLUbuntu

우선 본인이 사용하는 환경을 확인해주세요.


Debian

$ cat /etc/debian_version

CentOS 및 RedHat

$ cat /etc/redhat-release

fedora

$ cat /etc/fedora-release

★ 우분투← 대상!

$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.4 LTS"

Ubuntu에 MySQL을 설치해보세요!

$ sudo apt update
$ sudo apt install mysql-server mysql-client

감상


매우 단순하고 명쾌하다!좋아!!!

완성된 줄 알았어요.

$mysql -u xxx -p
Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
뜻밖에!

Ubuntu에서 설치한 MySQL을 시작하십시오!


데몬 있어요?

ps aux | grep mysqld있잖아

재부팅 시도

$ /etc/init.d/mysql stop
$ rm -f /var/run/mysqld/mysqld.sock
$ rm -f /tmp/mysql.sock
$ /etc/init.d/mysql start
$ mysql -u xxx -p
안 돼요.

재부팅도 해봐 ↑ 똑같아.

$ /etc/init.d/mysql restart
$ mysql -u xxx -p

Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.22-0ubuntu0.16.04.1 (Ubuntu)

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

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>
괜찮겠어!

다시


미안하지만, 나는 대답하지 않았다

좋은 웹페이지 즐겨찾기