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




삽질 시작





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



<!-- 파일 복사 -->

<dependency>

<groupId>org.codehaus.mojo</groupId>

<artifactId>exec-maven-plugin</artifactId>

<version>1.4.0</version>

</dependency>


<plugins>

<plugin>

<groupId>org.codehaus.mojo</groupId>

  <artifactId>exec-maven-plugin</artifactId>

  <version>1.4.0</version>

    <executions>

        <execution>

        <phase>package</phase>

            <id>compile-jni</id>

            <goals>

                <goal>exec</goal>

            </goals>

            <configuration>

                <executable>./compile-jni.bat</executable>

            </configuration>

        </execution>

    </executions>

</plugin>

</plugins>


요래 하면 되는데 phase 값을 maven에 있는 compile로 변경하고 싶은데 에러난다 ㅜ.ㅜ


그냥 쓰자 

' > Maven' 카테고리의 다른 글

빌드 옵션별 Resource 폴더 다르게 하기  (0) 2016.01.27
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

E3-1231V3, RAM: 16G, OS: CentOS 6.6 장비에 


몽고랑 네티랑 카베랑 깔아서 성능 테스트를 해봤다.


모 이정도면 충분하지 않나 싶다




' > Netty' 카테고리의 다른 글

Netty 성능 테스트를 위한 Linux 서버 설정  (0) 2015.12.24

+ Recent posts