Freebsd apache: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „=install= *pkg install apache24 =enable= *sysrc apache24_enable=yes =config= */usr/local/etc/apache24/httpd.conf ServerName free-bsd.xinux.lan:80 =start= *ser…“) |
Thomas (Diskussion | Beiträge) (→start) |
||
| Zeile 8: | Zeile 8: | ||
=start= | =start= | ||
*service apache24 start | *service apache24 start | ||
| + | =check= | ||
| + | *sockstat -4 | grep 80 | ||
| + | <pre> | ||
| + | www httpd 763 4 tcp4 *:80 *:* | ||
| + | www httpd 761 4 tcp4 *:80 *:* | ||
| + | www httpd 760 4 tcp4 *:80 *:* | ||
| + | www httpd 759 4 tcp4 *:80 *:* | ||
| + | www httpd 758 4 tcp4 *:80 *:* | ||
| + | www httpd 757 4 tcp4 *:80 *:* | ||
| + | root httpd 756 4 tcp4 *:80 *:* | ||
| + | </pre> | ||
| + | |||
=links= | =links= | ||
*https://www.digitalocean.com/community/tutorials/how-to-install-an-apache-mysql-and-php-famp-stack-on-freebsd-10-1 | *https://www.digitalocean.com/community/tutorials/how-to-install-an-apache-mysql-and-php-famp-stack-on-freebsd-10-1 | ||
Aktuelle Version vom 28. Oktober 2017, 18:48 Uhr
install
- pkg install apache24
enable
- sysrc apache24_enable=yes
config
- /usr/local/etc/apache24/httpd.conf
ServerName free-bsd.xinux.lan:80
start
- service apache24 start
check
- sockstat -4 | grep 80
www httpd 763 4 tcp4 *:80 *:* www httpd 761 4 tcp4 *:80 *:* www httpd 760 4 tcp4 *:80 *:* www httpd 759 4 tcp4 *:80 *:* www httpd 758 4 tcp4 *:80 *:* www httpd 757 4 tcp4 *:80 *:* root httpd 756 4 tcp4 *:80 *:*