2016年5月14日

linux下卸载apache方法小结

摘要: 方法一 复制代码 代码如下: root@server ~]# rpm -qa|grep httpd httpd-2.2.3-11.el5_2.centos.4 httpd-manual-2.2.3-11.el5_2.centos.4 说明:rpm –qa | grep mysql 命令是为了把mys 阅读全文

posted @ 2016-05-14 15:01 超哥* 阅读(360) 评论(0) 推荐(0) 编辑

nginx 代理

摘要: nginx 代理: server { listen 80; server_name yiitest yiitest.com; error_log /var/log/www/yiitest_error.log; access_log /data/logs/nginx/wslm_access.log; 阅读全文

posted @ 2016-05-14 13:30 超哥* 阅读(271) 评论(0) 推荐(0) 编辑

imagick API 中文说明

摘要: 下面是 imagick API 中文说明 : imagick 类 imagick::adaptiveblurimage 向图像中添加 adaptive 模糊滤镜 imagick::adaptiveresizeimage 自适应调整图像数据依赖关系 imagick::adaptivesharpenim 阅读全文

posted @ 2016-05-14 13:28 超哥* 阅读(1421) 评论(0) 推荐(0) 编辑

MySQL命令行操作

摘要: 一:alter table用来创建普通索引,unique索引或primary key索引 普通索引:alter table t1 add index in_name(name) --t1表中的那么字段添加索引名为in_name 唯一索引:alter table t1 add unique(name) 阅读全文

posted @ 2016-05-14 13:21 超哥* 阅读(1008) 评论(0) 推荐(0) 编辑

虚拟机添加硬盘自动挂载

摘要: fdisk -l /dev/sdb Command (m for help): m Command (m for help): p Command (m for help): n Command action e extended p primary partition (1-4) p Partit 阅读全文

posted @ 2016-05-14 13:15 超哥* 阅读(350) 评论(0) 推荐(0) 编辑

linux添加开机自启动脚本

摘要: 一、在/etc/rc.local中添加 如果不想将脚本粘来粘去,或创建链接什么的, 则: step1. 先修改好脚本,使其所有模块都能在任意目录启动时正常执行; step2. 再在/etc/rc.local的末尾添加一行以绝对路径启动脚本的行; 如: $ vim /etc/rc.local #!/b 阅读全文

posted @ 2016-05-14 13:08 超哥* 阅读(220) 评论(0) 推荐(0) 编辑

memcache

摘要: sudo apt-get install memcached 启动该服务: memcached -d -m 128 -p 11211 -u root 这里需要说明一下memcached服务的启动参数: -p 监听的端口 -l 连接的IP地址, 默认是本机 -d start 启动memcached服务 阅读全文

posted @ 2016-05-14 13:06 超哥* 阅读(153) 评论(0) 推荐(0) 编辑

linux查看系统的日志的一些实用操作

摘要: last -a 把从何处登入系统的主机名称或ip地址,显示在最后一行。 -d 指定记录文件。指定记录文件。将IP地址转换成主机名称。 -f 指定记录文件。 -n 或- 设置列出名单的显示列数。 -R 不显示登入系统的主机名称或IP地址。 -x 显示系统关机,重新开机,以及执行等级的改变等信息 以下看 阅读全文

posted @ 2016-05-14 13:04 超哥* 阅读(187) 评论(0) 推荐(0) 编辑

MySQL主从同步

摘要: my.cnf配置文件 /etc/my.cnf mysql数据库位置 datadir=/var/lib/mysql 1,修改mysql数据库的数据文件存储路径 cp /usr/share/mysql/my-default.cnf /etc/my.cnf (如果/etc下没有my.cnf) 停用mysq 阅读全文

posted @ 2016-05-14 13:03 超哥* 阅读(102) 评论(0) 推荐(0) 编辑

Linux压缩/解压缩命令使用方法

摘要: Linux压缩/解压缩命令使用方法 compress 命令 [root@ASM01 ~]# compress [-dcr] 文件或目录 参数: -d :用来解压缩的参数 -r :可以连同目录下的文件也同时给予压缩[此参数慎用比较危险] -c :将压缩资料输出成为 standard output (输 阅读全文

posted @ 2016-05-14 13:01 超哥* 阅读(797) 评论(0) 推荐(0) 编辑

导航