2016年12月30日 星期五

Nginx

Nginx, 一種網頁伺服器, 起初是供俄國大型的入口網站及搜尋引擎Rambler使用

此軟體BSD-like協定下發行, 可在UNIX、GNU/Linux、BSD、Mac OS X、Solaris, 以及Microsoft Windows等作業系統中執行

Nginx是一款面向效能設計的HTTP伺服器, 相較於Apache、lighttpd具有占有記憶體少, 穩定性高等優勢

在Linux作業系統下, Nginx使用epoll事件模型,得益於此, Nginx在Linux作業系統下效率相當高。

自PHP-5.3.3起,PHP-FPM加入到了PHP核心,編譯時加上--enable-fpm即可提供支援

2016年12月17日 星期六

PHP安裝

# dnf install php php-common
# dnf install php-mysql php-pdo php-gd php-mbstring
# systemctl restart httpd
測試
# cd /var/www/html/
# vi  info.php
<?php
phpinfo()
?>

2016年12月16日 星期五

MariaDB(MySQL)安裝

# dnf install mariadb-server
# systemctl enable mariadb
# systemctl start mariadb
# systemctl status mariadb
# mysql_secure_installation

2016年12月3日 星期六