Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 천단위
- TPL
- mariadb
- 문자열자르기
- replace
- RabbitMQ
- JavaScript
- Python
- php
- SVN
- Oracle
- ubuntu
- centos
- install
- Selectbox
- Postfix
- 일괄변경
- Eclipse
- yum
- docker
- jQuery
- TextBox
- random
- i18n
- MySQL
- smarty
- 한글 깨짐
- 부모창
- 확장자
Archives
- Today
- Total
wilson's story
Ubuntu 18.04 에 Mariadb 10.5 설치 본문
반응형
Ubuntu 18.04에 Mariadb를 기본으로 설치 하면 최신 버전이 설치가 되지 않는다
최신 버전을 설치하고 싶으다면
sudo apt-get install software-properties-common sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc' sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mirror.yongbok.net/mariadb/repo/10.5/ubuntu bionic main' sudo apt update sudo apt install mariadb-server
설치 완료 후 외부에서도 접속 가능 하도록 하기 위해
sudo vim /etc/mysql/mariadb.conf.d/50-server.cnf bind-address = 127.0.0.1 ->변경 bind-address = 0.0.0.0 sudo service mysql restart
반응형