`
sinykk
  • 浏览: 357040 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
-bash: mysql: command not found [root@localhost sinykkdata]# ln -s /usr/local/mysql/bin/mysql /usr/bin     ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/usr/local/mysql/tmp/mysql.sock' (2) 是mysqld服务没启,运行/usr/local/mysql/bin/mysqld_safe & ERROR 1 ...

linux 乱码

[root@localhost ~]# vi /etc/sysconfig/i18n 修改为   #LANG="zh_CN.UTF-8" LANG="en_US.UTF-8" SYSFONT="latarcyrheb-sun16" SUPPORTED="zh_CN.UTF-8:zh_CN:zh"
        通过 UltraISO 这个软件将镜像文件烧录到U盘里   ===================================================   用usb-hdd模式制作的U盘,启动安装,结果出现: redhat could not find kernel image: linux 找到问题的解决办法: 1、确保U盘中存在syslinux.cfg文件。随着所安装的版本的不同,该文件的位置可能不同,通常在/boot/syslinux目录下或者/syslinux目录下。 2、如果在U盘中存在isolinux.cfg文件但却不存在sy ...
nginx.conf的server配置如下 server     {         listen       80;         server_name .ai9475.com; #注意前面的小数点,这样就不用配置www         index index.html index.htm index.php;         root  /home/wwwroot/;         error_page 404 = /404.php; #需要在前面http中加 fastcgi_intercept_errors on;         location ~ .*\ ...
NGINX禁止与允许IP访问服务   location / {             allow  122.234.54.116;             deny   all;             index  index.html index.htm index.php;             if (!-e $request_filename){                 rewrite ^(.*)$ /index.php?s=$1 last;                 break;             }         }     ...

centos 同步时间

CentOS系统时间同步的步骤如下: 新装的CentOS系统服务器可能设置了错误的,需要调整时区并调整时间. 如下是CentOS系统使用NTP来从一个时间服务器同步 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime ntpdate us.pool.ntp.org   若ntpdate 报未知命令,那就安装一下 yum install ntp
<?php /*$ip=real_ip(); $url='http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip='.$ip; $content=fopen_url($url); $Exp='/country":"(.*?)","province":"(.*?)","city":"(.*?)","district":"","isp":& ...
delete from sinykk_love_web where id in (select id from sinykk_love_web group by site_url having count(site_url)>1) 1093 - You can't specify target table 'sinykk_love_web' for update in FROM clause 改成如下就好 delete from sinykk_love_web where id in (select temp.id from (select m. id,m.site_url from ...
例 *************************************************** 0 0 * * * /usr/bin/rdate -s rdate.darkorb.net 0 0 * * * /bin/bash /data/nginx/cut_nginx_log.sh # reboot server 0 5 * * 1 reboot # update xiaoshuo 10 6,17,19,21,23 * * * /usr/local/webserver/php/bin/php /var/www/htdocs/crons/cron ...
今天修改DEDECMS的评论系统,想把它修改成和腾讯的评论系统差不多。。然后就想到也要显示浏览者的省市,在网上搜索后找到了一段腾讯的IP API,然后就应用到DEDECMS上了。。当然了这段代码你可以应用到你的PHP项目上去。。 看说代码吧: function getIpPlace(){ $ip2=file_get_contents("http://fw.qq.com/ipaddress"); $ip2=str_replace('"',' ',$ip2); $ip3=explode("(",$ip2); $a=subs ...
重启直接执行 [root@localhost sbin]# /usr/local/nginx/sbin/nginx 就可以了     经常需要重启 nginx ,但网上的很多教程都需要繁琐的启动脚本,远不如apache的重启 命令那么简单。 但研究了一下nginx 帮助后发现,有-s参数可对nginx 服务进行管理: # /usr/local/nginx /sbin/nginx -h nginx version: nginx /0.7.63 Usage: nginx [-?hvVt] [-s signal] [-c filename] [-p pref ...
很遗憾,用了许久的lnmp有时候重启lnmp都是操作错误的。 正确的做法是 #/root/lnmp stop 详细可以看 #/root/lnmp --hlep     LNMP一键安装包是一个用Linux Shell编写的可以为CentOS/RadHat、Debian VPS(VDS)或独立主机安装LNMP(Nginx、MySQL、PHP ...
本文参考 http://blog.lixiphp.com/centos-linux-memcache-nginx-php-install/   因为时间问题,所以最后好到每个官方网站去下载最新版 一、源码包准备 服务器端主要是安装memcache服务器端,目前的最新版本是 memcached-v1.4.4 。 下载:http://memcached.googlecode.com/files/memcached-1.4.4.tar.gz 另外,Memcache用到了libevent这个库用于Socket的处理,所以还需要安装libevent, libevent的最新版本是li ...
在PHP中使用Memcached,有两种方式,一种是安装PHP的memcache扩展 (实际上还有另外一个memcached扩展 , 是基于比较流行的libmemcached库封装的),该扩展是用c写的,效率较高,需要在服务器上安装。另外一种则是直接使用客户端的php- memcached-client类库,但是这个我在网上找了半天也没找到一个官方的网站。所以呢,还是装个扩展吧。假设php安装在/home /admin/php目录: wget http://pecl.php.net/get/memcache-2.2.5.tgz gzip -d memcache-2.2.5.tg ...
( ! ) Warning: mysql_connect() [function.mysql-connect]: mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, has ...
Global site tag (gtag.js) - Google Analytics