Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 – Part 4 Instalasi Web Server di FreeBSD 6.0 dengan Apache 2.2, MySQL 5.0 dan PHP 5 - Bagian 4
Installing Apache 2.2, MySQL 5 and PHP 5 in FreeBSD 6.0 for a Reliable Web Server Instalasi Apache 2.2, MySQL 5 dan PHP 5 pada FreeBSD 6.0 selama Reliable Web Server
Part 4 – Installing Apache HTTPD Web Server 2.2 Bagian 4 - Instalasi Apache Web Server HTTPD 2,2
- Install Apache HTTP Server 2.20 by using FreeBSD Ports Collection: Menginstal Apache HTTP Server FreeBSD 2,20 dengan menggunakan Ports Collection:
cd /usr/ports/www/apache22 cd / usr/ports/www/apache22
make install clean make install bersih - A Apache HTTP Server script apache22.sh is located at /usr/local/etc/rc.d to provide Apache HTTP Server start and shutdown service. Apache HTTP Server Sebuah skrip apache22.sh terletak di / usr / local / etc / rc.d untuk menyediakan Apache HTTP Server shutdown awal dan layanan. To enable Apache web server to automatically starts whenever after server reboots, issue the following command at CLI: Untuk mengaktifkan server web Apache untuk dimulai secara otomatis setiap kali setelah reboot server, lakukan perintah berikut di CLI:
echo 'apache22_enable =”YES”' >> /etc/ rc.conf echo 'apache22_enable = "YES"'>> / etc / rc.conf
- To start Apache HTTP web server immediately, use: Untuk memulai server web Apache HTTP segera, gunakan:
/usr/local/sbin/apachectl start / usr / local / sbin / apachectl start
or atau
/usr/local/etc/rc.d/apache22.sh start / usr/local/etc/rc.d/apache22.sh mulai
- Apache installation finished. Instalasi Apache selesai.
IMPORTANT : The page is machine translated and provided "as is" without warranty. PENTING: Halaman ini adalah mesin diterjemahkan dan diberikan "sebagaimana adanya" tanpa jaminan. Machine translation may be difficult to understand. Terjemahan mesin mungkin sulit untuk mengerti. Please refer to Silakan merujuk ke original English article artikel asli bahasa Inggris whenever possible. bila memungkinkan.
Related Articles Artikel Terkait
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 – Part 5 Instalasi Web Server di FreeBSD 6.0 dengan Apache 2.2, MySQL 5.0 dan PHP 5 - Bagian 5
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 – Part 3 Instalasi Web Server di FreeBSD 6.0 dengan Apache 2.2, MySQL 5.0 dan PHP 5 - Bagian 3
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 – Part 1 Instalasi Web Server di FreeBSD 6.0 dengan Apache 2.2, MySQL 5.0 dan PHP 5 - Bagian 1
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 – Part 2 Instalasi Web Server di FreeBSD 6.0 dengan Apache 2.2, MySQL 5.0 dan PHP 5 - Bagian 2
- Installing and Configuring DHCP Server (DHCPd) on FreeBSD Instalasi dan Konfigurasi Server DHCP (dhcpd) di FreeBSD
- FreeBSD Apache HTTP Accept Filter Error FreeBSD Apache HTTP Accept Filter Error
- Install phpBB 2 in Windows XP running on Apache 2, PHP 5 and MySQL 4 Install phpBB 2 pada Windows XP berjalan pada Apache 2, PHP 5 dan MySQL 4
- Apache Status (whm-server-status) in cPanel WebHost Manager Returns Blank Page Apache Status (WHM-server-status) di cPanel webhost Manager Pengembalian Blank Page
- Fix Internal Server Error When Accessing Easy Apache in cPanel WebHosting Manager Perbaiki Internal Server Error Ketika Mengakses Mudah Apache di cPanel WebHosting Manager
- Request URL /server-status or 404 Page Not Found Apache Error Meminta URL / server-status atau 404 Halaman Tidak Ditemukan Apache Error










































March 16th, 2009 18:26 16 Maret 2009 18:26
thank you very much for the information…. terima kasih banyak untuk informasi ....
December 27th, 2008 08:06 27 Desember 2008 08:06
Hi, I would just like to post my experiences following this guide. Hi, aku hanya ingin memposting pengalaman saya mengikuti panduan ini. All went fine following the steps on this page except when I tested apache by accessing it's URL. Semuanya berjalan baik-baik saja mengikuti langkah-langkah di halaman ini kecuali ketika aku diuji apache dengan mengakses URL itu. I was having hostname or servname not set problems and I could not not get it to work changing the different settings and stuff. Aku sedang mengalami hostname atau tidak diatur servname masalah dan saya tidak bisa tidak mendapatkannya bekerja mengubah pengaturan yang berbeda dan sebagainya. After searching through the net, I stumbled upon an article on turning off IPv6 support. Setelah melakukan pencarian melalui internet, saya stumbled atas artikel tentang IPv6 mematikan dukungan. Here's what I did: Inilah yang saya lakukan:
ipv6_enable=”NO” – Added this in rc.conf ipv6_enable = "NO" - Added ini dalam rc.conf
#::1 localhost localhost.my.domain – I commented this line in my /etc/hosts.conf #:: 1 localhost localhost.my.domain - Aku komentar baris ini di / etc / hosts.conf
I also came across accf problems. Saya juga datang di accf masalah. I did this: Aku melakukan ini:
root@freebsd:# kldload accf_http root @ freebsd: # kldload accf_http
root@freebsd:# vi /boot/loader.conf root @ freebsd: # vi / boot / loader.conf
Edited this line: accf_http_load=”YES” Edited baris ini: accf_http_load = "YES"
This somehow got me over the hump. Ini, entah bagaimana membuat saya atas punuk. I hope this helps anyone out there who encounters the same problems as min. I hope this helps orang di luar sana yang menemukan masalah yang sama min.
Francis Francis
November 25th, 2008 10:28 25 November 2008 10:28
I usually have to (at least) set ServerName in /usr/local/etc/apache22/httpd.conf Aku biasanya harus (setidaknya) mengatur ServerName di / usr/local/etc/apache22/httpd.conf
September 8th, 2008 22:39 8 September 2008 22:39
For PC-BSD (and possibly other FreeBSD distros), you may recieve a conflict with another package when running “make install clean”. Untuk PC-BSD (dan mungkin FreeBSD distro lain), Anda mungkin menerima konflik dengan paket lain ketika menjalankan "make install bersih". Run this instead “make -i install clean” to get past this issue. Jalankan ini bukan "membuat-i install bersih" untuk melewati masalah ini.
July 12th, 2008 02:41 12 Juli 2008 02:41
[...] The apache22/mysql/php install guide on mydigitallife is excellent, but if you copy/paste the snippet (as shown in the instructions) it adds an extra [...] [...] The apache22/mysql/php panduan menginstal mydigitallife adalah sangat baik, tetapi jika Anda menyalin / menyisipkan potongan (seperti yang ditunjukkan dalam instruksi) itu menambah ekstra [...]
May 22nd, 2008 16:23 22 Mei 2008 16:23
ehhm and you dont config apache ?? ehhm dan Anda dont config apache??