반응형
250x250
Notice
Recent Posts
Recent Comments
Link
«   2024/03   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
Archives
Today
Total
관리 메뉴

가끔 보자, 하늘.

임시.. 본문

개발 이야기/인프라 구축 및 운영

임시..

가온아 2014. 10. 6. 18:51

=> couchbase install

 

Centos 6.5

 

- iptables 기본으로 enable  >> rule 구성하거나 일단 꺼두기

service iptables stop

 

- eth0 기본으로 off

vi /etc/sysconfig/network-scripts/ifcfg-eth0 

# ONBOOT=no

ONBOOT=yes

service network restart

 

- sshd 켜기

service sshd start

 

node.js 설치

 

- Fedora Extra Packages for Enterprise Linux (EPEL) 저장소 등록

curl -O http://download-i2.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

rpm -ivh epel-release-6-8.noarch.rpm


- npm 설치 (* node 자동설치)

yum install npm --enablerepo=epel

 

couchbase 설치

=> RPM을 다운 받아서 설치해야 한다.

 

 

=> ntfs usb mount

 

 

Yes, you can mount FAT/FAT16/FAT32 without a problem to copy or write files.

For NTFS you need to install additional repo and install pkgs as follows. For 64 bit CentOS/RHEL 5.x type

Code:
wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el5.rf.x86_64.rpm

For 32bit CentOS/RHEL 5.x type:

Code:
wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el5.rf.i386.rpm

Install downloaded rpm file:

Code:
rpm --import http://apt.sw.be/RPM-GPG-KEY.dag.txt
rpm -ivh rpmforge-release*
yum --enablerepo=rpmforge install fuse fuse-ntfs-3g

To mount type:

Code:
mkdir /mnt/ExtUSB
mount -t ntfs-3g -o rw,umask=0000 /dev/sda1 /mnt/ExtUSB/
cd /mnt/ExtUSB/
ls -l

For 

CentOS 6/RHEL 6

 see RHEL / CentOS Linux: Mount and Access NTFS Partition

 

 

 => vncserver font error

 

The magic combination of yum installs to get this working for me was as follows...

yum groupinstall -y "X Window System"
yum install -y  tigervnc-server tigervnc-server-module libXfont pixman xterm xorg-x11-twm
chkconfig --level 345 vncserver on

then for convenience maybe something like this to get it going

echo 'VNCSERVERS="2:root"' >> /etc/sysconfig/vncservers

This is assuming you are doing this all as root and you are happy to start your vncserver on DISPLAY 2.

If you get connection refused errors from any attempt to connect to the vncserver once it is running check a couple of things...

1) Your local firewall (iptables) or otherwise allow comms to 5902 etc.

2) You have not forbidden remote connection to the vncserver via the VNCSERVERARGS options in /etc/sysconfig/vncservers like this

VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -localhost"

Something like

tcpdump port 5902

Can help you decide if it is a local or remote firewall problem etc.

  • Hopefully this will save somebody else hours and hours of frustration

 

반응형