Tag: Summary
-
本博客支持ipv6访问!
最近nginx要升级1.1.7,而且vps支持ipv6,并送了一个ipv6地址 正好学校里有ipv6上网环境,大致步骤是加入ipv6模块,并在nginx的配置里加入ipv6监听,使用ipv6可以直接访问 nginx的升级和加入ipv6模块 wget http://nginx.org/download/nginx-1.1.7.tar.gz tar vxzf nginx-1.1.7.tar.gz cd nginx-1.1.7 ./configure –with-ipv6 make mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.old cp objs/nginx /usr/local/nginx/sbin/nginx make upgrade 测试下配置文件:/usr/local/nginx/sbin/nginx -t 查看下,已经添加了ipv6模块 root@www:~# nginx -V nginx: nginx version: nginx/1.1.7 nginx: built by gcc 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) nginx: configure arguments: –with-ipv6 nginx的配置文件 里面加入下面指令,如果是默认网站的话加default listen [::]:80 default; http://[2604:6600:1059::5810:3a0a]/ 重新加载配置文件 kill -HUP `cat /usr/local/nginx/logs/nginx.pid` 不要用nginx -s…
-
安装php5-gd库
在自已的vmplayer里面装了一个oecms,但是装好后验证码始终出不来,ie下显示一个红叉,火狐下显示空白。 开始我想会不会是因为缓存和目录权限的问题 后来看了看php代码发现里面直接就是image/PNG,我一想,应该是php库没装全,于是去网上搜了一下,这个库包含了libjpeg,libpng 于是 apt-get install php5-gd 问题解决。 PHP处理图像,使用了GD库,它使php支持 gif , jpeg , ttf ,wbmp :)EOT
-
php的mcrypt扩展安装
If using a Debian-based Linux system, you can run the following commands: sudo apt-get install php5-mcrypt
-
mysql创建用户并控制其对数据库、表、列的权限
创建一个用户realabc,步骤为进入mysql库,向user表中插数据,本地登陆,密码abc;flush privileges 使配置生效 mysql> use mysql; mysql> insert into user (Host,User,Password) values (“localhost”,”realabc”,PASSWORD(“abc”)); mysql> flush privileges; 其实直接使用grant命令mysql也会帮我们创建用户 grant all privileges on *.* to ‘yyy’@’localhost’ identified by ‘123’; 接下来想让realabc用户来插入、更新discuzx数据库里的pre_abc、pre_def表,那么肯定是用insert,update,当然还有select,要不数据都没法看到。先查看当前用户的权根: mysql> show grants for realabc@localhost; +—————————————————————————————————————-+ | Grants for realabc@localhost | +—————————————————————————————————————-+ | GRANT USAGE ON *.* TO ‘realabc’@’localhost’ IDENTIFIED BY PASSWORD ‘*0D3CED9BEC10A777AEC23CCC353A8C08A633045E’ | +—————————————————————————————————————-+ 1 row…
-
ubuntu/debian下安装使用dig
在ubuntu10.10下没有dig命令,而debian6下面有这个命令 ubuntu下想要apt-get安装,发现没有找到dig软件包 搜索后才发现正确安装是安装dnsutils apt-get install dnsutils PS:redhat系列这样安装 yum install bind-utils 看看dig命令大多时候如何可以取代nslookup的 root@www:~# dig sina.com ; <<>> DiG 9.7.1-P2 <<>> sina.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 58809 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 5, ADDITIONAL: 2 ;; QUESTION SECTION: ;sina.com. IN A ;;…
-
xp win7 debian下的ipv6配置
xp使用isatap隧道方式上ipv6 win+R > cmd C:\Documents and Settings\Administrator>netsh netsh>int netsh interface>ipv6 netsh interface>ipv6 install netsh interface ipv6>isatap netsh interface ipv6 isatap>set router xxx.xxx.xxx.xxx netsh interface ipv6 isatap>set state enabled 上面的填好router的地址 Windows7使用isatap隧道方式上ipv6 C:\Documents and Settings\Administrator>netsh netsh>int netsh interface>ipv6 netsh interface ipv6>isatap netsh interface ipv6 isatap>set router xxx.xxx.xxx.xxx netsh interface ipv6 isatap>set state enabled