不做第二个别人,永远做第一个自己。
发布时间:2014-04-10 11:18:40
备份mysql备份mysql数据库的命令;mysqldump -u$username -p$password $databasename > bak_file.sql备份mysql数据库为带删除表的格式(能够让改备份覆盖之前备份的数据库,无须手动删除之前已备份数据库文件)mysqldump -add-drop-table -u$username -p$password $databasename > bak_fiel.sql直接.........【阅读全文】
发布时间:2014-04-10 11:17:22
配置好Nginx现在在添加一个virtual host (xiaoyuan.com)配置如下:# vim /etc/nginx/conf.d/virtual.conf # 在最下面添加server { listen 80; server_name www.xiaoyuan.com; location / { root /usr/share/nginx/xiaoyuan.com; //这路径是网站的路径; .........【阅读全文】
发布时间:2014-04-10 11:16:55
nginx结合php,配置如下: Configure Nginx to execute PHP script.This example shows to use PHP-FPM ( PHP FastCGI Process Manager ). 安装php & php-fpm # yum –enablerepo=epel -y install php php-mbstring php-pear php-f.........【阅读全文】
发布时间:2014-04-10 11:16:24
nginx 结合 perl Configure Nginx to execute Perl script.This example shows to use fcgiwrap + spawn-fcgi. 安装一些辅助软件包!# yum –enablerepo=epel -y install spawn-fcgi fcgi-devel # yum -y groupinstall "Development Tool.........【阅读全文】