View RSS Feed

บล็อกโพสต์ล่าสุด

  1. Nginx, MySQL, and PHP5 on an Ubuntu & Debian server

    โดย เมื่อ 02-03-2010 เวลา 17:09:54
    After using Lighttpd for a couple of months, I wasn’t really happy with it, so I have decided to move from Lighttpd to Nginx, which is another open-source lightweight web server. In this tutorial, I am going to go over setting up Nginx, MySQL, and PHP5 on an Ubuntu server.
    1. Install Nginx

    Code:
    aptitude install nginx
    For some reason Nginx does not start automatically when it is installed, so we need to start Nginx.
    Code:
    /etc/init.d/nginx start
    Now we want to make sure that Nginx installed properly. Open your web browser and point it to your servers IP address. If all is working fine you should see a page that says “Welcome to nginx!”


    2. Install MySQL

    Code:
    aptitude install mysql-server mysql-client
    3. Install PHP5

    Code:
    aptitude install php5-cgi php5-mysql php5-curl php5-gd  php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache  php5-mhash php5-ming php5-ps php5-pspell php5-recode php5-snmp  php5-sqlite php5-tidy
    ...
    ป้ายกำกับ: and PHP5, mysql, Nginx, on an Ubuntu & Debian server เพิ่ม / แก้ไข ป้ายกำกับ
    หัวข้อ
    How To , Linux

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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90