레이블이 Ubuntu인 게시물을 표시합니다. 모든 게시물 표시
레이블이 Ubuntu인 게시물을 표시합니다. 모든 게시물 표시

2016년 10월 18일 화요일

Xenceter 6.1 에서 ubuntu 16.04 설치 후 vm 시작 시 오류


ubuntu 16.04 를 설치가 완료된 후 vm 시작 시 아래와 같이 오류가....

The bootloader for this VM returned an error -- did the VM installation suceed? Unable to find partition containing kernel.


여러 이유가 있겠지만 내가 해결했던 방법은


위 링크에서 처럼

xenserver console 에서 /usr/lib/python2.4/site-packages/grub/GrubConf.py 파일을 수정

if arg.strip() == "${saved_entry}":
    arg = "0"
>> 부분을 아래 처럼 수정 후 vm 시작이 정상적으로 되었다.
if arg.strip() == "${saved_entry}":
    arg = "0"
elif arg.strip() == "${next_entry}":
    arg = "0

* xencenter 에 ubuntu 16.04 template 추가는 아래 링크를 참고 함





2016년 3월 29일 화요일

Ubuntu APM(apache2 + php5 + mysql) 설치

apache2 + php + RDS(mysql) 를 사용해야 할 일이 생겼다.

우선 Ubuntu instance 생성 후

$sudo apt-get update 

를 실행한다.

1. apache2 설치

$sudo apt-get install apache2

2. php5 설치

$sudo apt-get install php5

3. RDS 를 사용할 것이기에 mysql 은 client 로 설치한다.

$sudo apt-get install mysql-client

4. php5 + mysql 연동

$sudo apt-get install php5-mysql

3번에서 mysql-server 로 설치할 경우에는 

$sudo apt-get install mysql-server


apache2 vitualhost 설정

cp /etc/apache2/sites-available/000-default /etc/apache2/sites-available/example.com.conf

default 파일을 example.com 용으로 복사

ServerAdmin, ServerName, DocumentRoot 등의 설정 후

vi /etc/apache2/apache2.conf 

에 Directory 설정 추가

이때 유의 할 점은 apache2 버전이 2.2 일 경우에는 

Order allow, deny

Allow from all

apache2 버전이 2.4 이상일 경우

Require all granted

로 설정한다.

그렇지 않으면.... error.log 에서 'client denied by server configuration' 오류를 볼 수 있다.

vitualhost 활성화

sudo a2ensite example.com

sudo service apache2 restart


vitualhost 비활성화

sudo a2dissite example.com

sudo service apache2 restart





2015년 9월 8일 화요일

Ubuntu 14.04 xrdp 사용하기


1. install xRDP

sudo apt-get update
sudo apt-get install xrdp

2. install XFCE4

sudo apt-get install xfce4

3. configure xRDP

echo xfce4-session > ~/.xsession

sudo cp /etc/xrdp/startwm.sh /etc/xrdp/startwm.sh.old
sudo nano /etc/xrdp/startwm.sh

마지막 줄에 있는 . /etc/X11/Xsession 삭제
마지막 줄에 다음과 같이 추가

startxfce4
#!/bin/sh
if [ -r /etc/default/locale ]then  . /etc/default/locale  export LANG LANGUAGEfi
startxfce4

4. restart xRDP

sudo service xrdp restart

참고 링크 : http://www.tweaking4all.com/software/linux-software/use-xrdp-remote-access-ubuntu-14-04/