ubuntu(3)
-
[Ubuntu] Ubuntu + lighttpd + php5 + mysql (Using apt-get)
# sudo su # apt-get install mysql-server mysql-client # apt-get install lighttpd # apt-get install php5-fpm php5-cgi php5-mysql php5 # vim /etc/php5/fpm/php.ini ;주석 해제cgi.fix_pathinfo=1 # vim /etc/lighttpd/conf-available/15-fastcgi-php.conf fastcgi.server += ( ".php" => (( "socket" => "/var/run/php5-fpm.sock", "broken-scriptfilename" => "enable" )) ) # lighttpd-enable-mod fastcgi # lighttpd-enab..
2014.06.27 -
[Ubuntu] Installing Ubuntu 12.04LTS Server from USB using Mac OS X
So, I mainly use Ubuntu Server as my main development OS – it’s unix, it’s free, it’s fast, it’s easy to install, and most importantly, its package-management utility apt makes it extremely easy to install software. Whenever I need to get a physical server up and running, I just download the latest LTS (long-term support) distro .iso file from Ubuntu, and put it on a USB drive, and do a USB inst..
2013.06.26 -
Ubuntu Server Network Setting
1. 설정할 interface 일시중지 ifdown eth0 2. 디렉토리 이동 cd /etc/network/ 로 이동하면 interfaces라는 파일이 보입니다. 여기에 설정을 저장하면 설정이 지속적으로 유지됩니다. 3. 설정하기 vi interfaces [엔터]해서 파일을 열어보면 아래와 같은 형식으로 표현이 됩니다. # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet static address 192.168.0.1 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 ga..
2013.06.26