대상 OS

CentOS release 6.8 (Final)



1. 패키지 파일 복사


2. 방화벽 설정


3. 아파치 설정


4. php56 설치

yum list php56-*

yum 리스트에 뜨질않는다면 repository 변경

rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm

yum clean all

yum install php-pear php-devel gcc make

yum clean all

yum list php56*


기존에 깔았던 php제거

yum -y remove php php-*


yum install php56w-devel php56w-pecl php56w-common php56w-mysql php56w-pear php56w-mbstring php56w-opcache php56w



5. Predis 설치

yum install php-pear

pear channel-discover pear.nrk.io

pear install nrk/Predis


6. 레디스 클러스터 설정

./redis-server ../7000/redis.conf

./redis-server ../7001/redis.conf

./redis-server ../7002/redis.conf

./redis-trib.rb create 127.0.0.1:7000 127.0.0.1:7001 127.0.0.1:7002



개발자이지만 어플 기획을 할 일이 생겼다.

스타트업이라면 다 할 줄 알아야지..


그래서 앱 기획서 툴을 찾던 중 파워포인트에 애드온 시켜서 사용할 수 있는 좋은 제품이 있어서 리뷰를 쓴다.


powermockup 이라는 제품이다.


http://www.powermockup.com/





자주 사용될만한 그러한 클립이미지 들을 간단히 드래그만으로 문서에 포함시킬 수 있다.


이미지만 바껴도 기획서의 인상이 바뀌어진다.



아래는 로그인화면 관련해서 화면구성을 해 본 것으로, 괜찮은 화면을 구성할 수 있다.

단, 체험판이라 기능이 제한적이다.






트라이얼버전은 체험판으로써 기능이 제한적이다.


트라이얼버전을 받아서 써본다음 마음에 든다면 구입할 것을 권장한다.





가격은 위와 같고, 리뷰를 쓴다고 하면 코드를 준다고 한다.


모쪼록 조금 더 사용해보고 더 자세한 리뷰를 쓰도록 한다.


jsvc 로 데몬을 띄울려고 했는데 맥에서 아래와 같은 에러가 나온다.


Cannot find any VM in Java Home /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home

Cannot locate JVM library file


해결

http://www.thomaskioko.com/hacks/cannot-find-any-vm-in-java-home-mac/

This is going to be a short one. so let’s get to it.

Today was one of those days you go past page 5 searching for an answer in Google. Hopefully you will not have to go through the same process I did to get a fix.

I have been working with daemons and i hit a snag. The VM/JVM not found snag.

I got the following error when running the daemon: “Cannot find any VM in Java Home /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home
Cannot locate JVM library file”

After scrolling through the web I finally got a fix.

Solution:

Open terminal and type the following commands:

NB: Replace jdk1.7.0_71.jdk with your jdk version.

$ cd /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents
$ sudo ln -s Home/jre/lib Libraries
$ cd Libraries
$ sudo ln -s server/libjvm.dylib libserver.dylib

That’s it. Problem solved :-)

Let me get back to what I love doing, saving the world.

+ Recent posts