준호씨의 블로그
ubuntu 에 TextCube 설치 본문
티스토리를 주로 사용 하고 있지만 가상머신 호스팅 서비스 받는 곳에 TextCube 를 설치 해 보기로 함.
일단 https://github.com/Needlworks/Textcube/releases/tag/v1.10.7 에서 압축 파일 다운 받음
# 파일 다운로드
wget https://github.com/Needlworks/Textcube/archive/v1.10.7.tar.gz
# 압축 해제
tar xvfz ...
# 심볼릭 링크
ln -s Textcube-1.10.7/ Textcube
아파치 설정 (이건 도메인 설정에서 CNAME 으로 미리 연결 해 둬야 가능)
# junho85's textcube
<VirtualHost *:80>
DocumentRoot /home/junho85/web/Textcube
ServerName tc.junho85.pe.kr
<Directory /home/junho85/web/Textcube>
Require all granted
</Directory>
</VirtualHost>
http://tc.junho85.pe.kr 접근 하면 자동으로 setup 페이지로 이동 됨
http://tc.junho85.pe.kr/setup.php
MySQL 연결에서 에러. 계정에 db 권한 추가
mysql> grant all privileges on junho85_textcube.* to 'junho85'@'localhost' identified by 'j****8*j****';
chmod 0777 /home/junho85/web/Textcubechmod 0777 /home/junho85/web/Textcube/skin/blog
# root 권한a2enmod rewriteservice apache2 restart
<Directory "/home/junho85/web/Textcube">...Options FollowSymLinksAllowOverride FileInfo</Directory>
chmod 0755 /home/junho85/web/Textcube
'IT이야기' 카테고리의 다른 글
맥북(osx)에 아이폰 사진 옮겨 오기. 아이폰 사진 옮기기 (0) | 2015.10.11 |
---|---|
ubuntu 에 WordPress 설치 (0) | 2015.10.11 |
맥북에 scala 설치 (0) | 2015.10.11 |
티스토리에 마크다운이 지원 되면 좋겠다. (0) | 2015.10.09 |
tistory 에디터에 있었으면 하는 기능 (0) | 2015.10.05 |