css实现背景透明,文字不透明
background:rgba(255, 255, 255, 0.5) none repeat scroll 0 0 !important; filter:Alpha(opacity=50); background:#fff;/ 给区域内的字div标签加上position:relative 才能实现文字不透明
centos下安装配置redis
我用的centos版本是6.5 下载软件包 Wget http://redis.googlecode.com/files/redis-2.4.17.tar.gz 在根目录下 新建一个目录 lnmp(用来放配置文件的) 把文件上传上去(我是用ssh传的) 编译: tar zxvf. redis-2.4.17.tar.gz cd redis-2.4.17 make cd src make install 移动文件 便于管理 mkdir -p /usr/local/redis/bin mkdir -p /usr/local/redis/e...
近期的学习任务
1.掌握一种框架 (五颗星) 2.看完《高性能mysql》这本书 (四颗星) 3.看完《构建高可用linux服务器》这本书 (三颗星) 4.深入了解下redis memcahce mongodb (三点五颗星) 5.扎实下自己的js jq 三点五颗星 要求:在月底之前完成
textarea 在浏览器中固定大小和禁止拖动
给textarea 加个样式 (这个方法直接) resize: none;
putty连接linux中文乱码问题
vim /etc/sysconfig/i18n 把“LANG=”zh_CN.UTF-8″”改为 “LANG=”zh_CN.GB18030″”,完成后保存重新登录即可。
Oracle VM VirtualBox虚拟机上配置nginx后,本机无法访问
Oracle VM VirtualBox虚拟机上配置nginx后,本机无法访问 在centos6.5 上配置linux+nginx+mysql+php,出现用本机访问虚拟机的时候不能访问的问题 防火墙可以ping通虚拟机,虚拟机也可以ping通防火墙。 做如下处理: [root@localhost html]# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT [root@localhost html]# /etc/init.d/iptables save [root@localhost html]#...
yum install nginx 出现warning
warning: rpmts_HdrFromFdno: Header V3 RSA/SHA1 Signature, key ID 4520afa9: NOKEY Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY.art.txt The GPG keys listed for the "CentOS / Red Hat Enterprise Linux 6 - atomicrocketturtle.com" repository are already installed ...
centos6.5下配置lnmp环境
1.关闭防火墙 [root@CentOS ~]# service iptables stop ps:看到别人用的是[root@CentOS ~]# chkconfig iptables off 2.关闭selinux vi /etc/sysconfig/selinux //将SELINUX=enforcing修改为disabled然后重启生效 3、配置CentOS 6.0 第三方yum源(CentOS默认的标准源里没有nginx软件包) [root@CentOS ~]# yum install wget //下载wget工具 [root@CentOS ...
centos6.5配置网络并能上网
1.先查看网络mac地址 [root@centos ~]# cat /etc/udev/rules.d/70-persistent-net.rules 2.修改主机名称 [root@centos ~]# vim /etc/sysconfig/network 打开文件,修改以下内容并保存 NETWORKING=yes #使用网络 NETWORKING_IPV6=yes #使用网络 可不写 HOSTNAME=centos #设置主机名称 3.修改网卡 [root@centos ~]# vim /etc/sysconfig/networ...
mysql增加删除索引以及修改表字段
增加索引 mysql> alter table 表名 add index 索引名 (字段名1[,字段名2 …]); 例子: mysql> alter table tablename add index newname (name); 加主关键字的索引 mysql> alter table 表名 add primary key (字段名); 例子: mysql> alter table tablename add primary key(id); 加唯一限制条件的索引 mysql> alter table 表名 add un...