336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.



오늘 일이 없어서 ㅋㅋ 


블로그에 글을 많이 올리네 


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 설치 




삽질 시작





+ Recent posts