Ubuntu

oxwall 설치

Naan 2016. 3. 15. 10:56
반응형

ubuntu 환경에서 설치


다른 sns 설치랑 비슷하다.


# add-apt-repository ppa:ondrej/php5-5.6

# apt-get update

# apt-get upgrade

# apt-get install php5 php-gd

# apt-get install apache2

# apt-get install mysql-server


http://www.oxwall.org/download

위에서 파일 다운로드


# cp oxwall-1.8.1.zip /var/www/html/

# unzip oxwall-1.8.1.zip

# chown -R www-data:www-data *


DB 생성

# mysql -u root -p

CREATE DATABASE oxwall;

CREATE USER 'oxwall'@'localhost' IDENTIFIED BY 'PASSWORD';

GRANT ALL PRIVILEGES ON `oxwall`.* TO 'oxwalluser'@'localhost';

FLUSH PRIVILEGES;


http://localhost/











쉽게 설치가 된다.

반응형