Cloudera CDH/CDP 및 Hadoop EcoSystem, Semantic IoT등의 개발/운영 기술을 정리합니다. gooper@gooper.com로 문의 주세요.
1. MariaDB-source 버젼 다운 받기
http://mariadb.org - > https://downloads.mariadb.org/
https://mariadb.com/kb/en/mariadb/source-getting-the-mariadb-source-code/ -> https://github.com/MariaDB/server/tree/10.2
혹은
https://downloads.mariadb.org/mariadb/10.1.17/
2. 업로드및 압축출기
$gzip -d mariadb-10.1.17.tar.gz
$tar -xvf mariadb-10.1.17.tar
3. mariadb폴더로 이동
cd mariadb-10.1.17
5. ./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/data --with-charset=utf8 --with-mysql-usr=mysql --sysconfdir=/etc --enable-thread-safe-client
./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/data --with-charset=euckr --with-mysql-usr=mysql --sysconfdir=/etc --enable-thread-safe-client
./configure --prefix=/home/wisenut/sf-1/mysql --localstatedir=/home/wisenut/sf-1/mysql/data --with-charset=utf8 --with-mysql-usr=wisenut --sysconfdir=/etc --enable-thread-safe=client
./configure --prefix=/home/kwisenut/sf-1v4.5/mysql/mysql5 --localstatedir=/home/kwisenut/sf-1v4.5/mysql/mysql5/data --with-charset=utf8 --with-mysql-usr=kwisenut --sysconfdir=/etc --enable-thread-safe=client
./configure --prefix=/home/kwisenut/sf-1v4.5/mysql/mysql-5.1.17 --localstatedir=/home/kwisenut/sf-1v4.5/mysql/mysql-5.1.17/data --with-charset=utf8
6. make
7. make install
8. ./scripts/mysql_install_db
9. cat >> /etc/ld.so.conf
/usr/local/mysql/lib (엔터치고 ctrl+c 입력)
10. ldconfig
11. cp /usr/local/mysql/share/mysql/my-medium.cnf /etc/my.cnf
12. mysql 계정 생성
groupadd mysql
useradd -g mysql mysql
chown root.mysql -R /usr/local/mysql
chown mysql.mysql -R /usr/local/mysql/data
chgrp -R mysql /usr/local/mysql
13. /usr/local/mysql/bin/mysqld_safe --user=mysql &
14. /usr/local/mysql/bin/mysql
use mysql
update user set password=password('root!@')
update user set password=password('root')
where user = 'root';
delete from user where user='';
flush privileges;
15. /usr/local/mysql/bin/mysqladmin -u root -p showdown
16. /usr/local/mysql/bin/msyqld_safe -u root &
*참고 : 위에 내용은 정상적인 경우이고 AIX에서 source로 설치하기는 실패함
댓글 0
번호 | 제목 | 날짜 | 조회 수 |
---|---|---|---|
13 | update 샘플 | 2018.03.12 | 1324 |
12 | [DBeaver 4.3.0]import/export시 "Client home is not specified for connection" 오류발생시 조치사항 | 2017.12.21 | 1170 |
11 | 권한회수 및 권한부여 명령 몇가지 | 2017.11.16 | 1066 |
10 | db를 통째로 새로운 이름의 db로 복사하는 방법/절차 | 2017.11.14 | 1036 |
9 | mysql에서 외부 디비를 커넥션할 경우 접속 속도가 느려질때 | 2017.06.30 | 1672 |
8 | mysql-server 기동시 Do you already have another mysqld server running on port 오류 발생할때 확인및 조치방법 | 2017.05.14 | 2925 |
7 | Mysql DB 생성 및 권한. 특정아이피, 대역에 대한 접근 허용 | 2017.05.04 | 1065 |
6 | Ubuntu 16.04 LTS에 MariaDB 10.1설치 및 포트변경 및 원격접속 허용 | 2017.05.01 | 1666 |
5 | new Gson().toJson(new ObjectId())을 사용하면 값이 다르게 나오는 경우가 있음 | 2016.12.23 | 852 |
4 | ResultSet에서 데이타를 List<Map<String,String>>형태로 만들어서 리턴하는 소스(Collections.sort를 이용한 정렬 가능) | 2016.12.15 | 1141 |
3 | centos 6에서 mariadb 5.1 to 10.0 으로 upgrade | 2016.11.01 | 265 |
» | AIX 7.1에 MariaDB 10.2 소스 설치 | 2016.09.24 | 2691 |
1 | root계정으로 MariaDB설치후 mysql -u root -p로 db에 접근하여 바로 해줘야 하는일..(케릭터셑은 utf8) | 2015.10.02 | 912 |