오늘 일이 없어서 ㅋㅋ
블로그에 글을 많이 올리네
yum으로 마리아 디비를 설치하는게 좋은데
centos 6.6 마리아 설치 정보를 알지 못한다.
# vi /etc/yum.repos.d/mariadb.repo
[mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.0/centos6-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1
MariaDB package install:
# sudo yum install MariaDB-server MariaDB-client
MariaDB service:
# service mysql start
MariaDB startup on boot
chkconfig --level 345 mysql on
# /usr/bin/mysql_secure_installation
Enter current password for root (enter for none): (Enter)
Set root password? [Y/n] y (type password)
Remove anonymous users? [Y/n] y
Disallow root login remotely? [Y/n] y
Remove test database and access to it? [Y/n] y
Reload privilege tables now? [Y/n] y
Thanks for using MariaDB!
# vi /etc/sysconfig/iptables
-A INPUT -m state –state NEW -m tcp -p tcp –dport 3306 -j ACCEPT
# service iptables restart
Allow from firewall
# mysql -u root -p
GRANT ALL PRIVILEGES ON *.* TO 'root'@'IP' IDENTIFIED BY '패스워드' WITH GRANT OPTION;
IP = root 접근을 허용할 IP 172.20.82.xxx
패스워드 = 패스워드 스트링
flush privileges;
괜히 고생하지 말고 sql 설치
mysql workbench가 좋은데 마리아10버전은 안되나 보다
HeidiSQL 설치
삽질 시작
'글 > RDB' 카테고리의 다른 글
SQL Server DDL Triggers to Track All Database Changes (0) | 2016.06.08 |
---|---|
Prevent multiple users from running the same SQL Server stored procedure at the same time (0) | 2016.06.08 |
NOSQL별 Best Case 정리 (0) | 2016.01.05 |
mysql select 해서 바로 insert 하기 (0) | 2010.03.24 |
sqlite로 간단하게 db 만드는 방법 입니다 (0) | 2010.01.07 |