看到学长分享的SVN搭建,于是自己也在Centos6.5上进行搭建,采用YUM安装。
一、检查是否已经安装低版本的SVN
[root@localhost /]# rpm -qa | grep subversion
二、安装SVN
[root@localhost /]#yum install subversion
三、检查已经安装好的SVN
[root@localhost /]#svnserve --version
看到如下信息即代表安装成功:
svnserve,版本 1.6.11 (r934486)
编译于 Jun 23 2012,00:44:03
版权所有 (C) 2000-2009 ...
Linux下为php添加curl扩展
1、进到源码包对应扩展目录
# cd /root/lamp/php-5.2.12/ext/curl
2、调用phpize程序生成编译配置文件
# /usr/local/php5/bin/phpize
3、# ./configure -with-curl=/usr/local/curl -with-php-config=/usr/local/php5/bin/php-config
一般会出现错误如下:
checking for cURL in default path… not found
configure: error: Please reinstall the libcurl distribution -
easy.h should be in /inclu...
在windows下如何对linux web服务器进行快速开发
一、安装及配置samba
yum –y install samba* --skip-broken
vim /etc/samba/smb.conf
[web]
path=/usr/local/apache2/htdocs/
browseable=yes
writable=yes
二、创建用户并且acl权限配置
1.useradd apache
2.setfacl -m u:apache:rwx -R /usr/local/apache2/htdocs
3.setfacl -m d:u:apache:rwx -R /usr/local/apache2/htdocs
三、修改apache进程执行者
1.vim /usr/local/apache2/etc/httpd.conf
User apac...
Centos6.5安装telnet
安装好memcache之后想进入连接测试,telnet localhost 11211发现竟然提示没有telnet这个命令,于是需要自己进行安装。
一、查看本机是否安装telnet
#rpm -qa | grep telnet
如果什么都不显示。说明你没有安装telnet
二、开始安装
yum install xinetd
yum install telnet
yum install telnet-server
三、装好telnet服务之后,默认是不开启服务的,下面我们需要修改文件来开启服务。
vim /etc/xinetd.d/tel...
centos 6.5搭建Yii框架
将下载的Yii解压缩,压缩后会有三个文件夹,”demos,requirements,framework”,demos 当然就是演示了,暂时不用,而requirements是独立于YII框架的,用于检测服务器信息的,我们只将其中的framework文件夹拷贝到web目录,所以web根目录在 “/opt/www/html/”,我新建一个文件夹叫yii,framework放入yii中。
运行命令部署网站:”yii- dir/framework/yiic webapp”,yii-dir是yii所在目录,例如我的就是”/opt/www/...
centos 6.5下安装redis
1、下载redis包 http://redis.io/download
2、解压安装包 #tar xvzf redis-2.8.7.tar.gz
3、#cd redis-2.8.7
4、cd src/
5、make
6、make test
7、如果报错,提示没有You need 'tclsh8.5' in order to run the Redis test
然后到Tcl的官方网站http://www.tcl.tk/下载8.5版本
然后安装tcl8.5:
(configure和make的位置比较特殊,在安装目录的unix下,所以下面是tcl官方安装法)
#tar xvzf tcl8.5.12-src.t...
LAMP环境搭建中遇到的问题 (自己的笔记)
一、编译安装GD库时出现的错误
报错信息如下:
gd_png.c:603: error: ‘PNG_COMPRESSION_TYPE_DEFAULT’ undeclared (first use in this function) gd_png.c:
609: error: ‘PNG_COLOR_TYPE_RGB’ undeclared (first use in this function) gd_png.c
725: error: ‘row_pointers’ undeclared (first use in this function) gd_png.c
解决办法:
进入gd源代码目录:/opt/ws/gd2
vim gd_png.c
将16行的png.h...
linux下安装lamp环境问题总结
本人使用的linux系统是centos6.5!!
一、在安装libpng
./configure --prefix=/usr/local/libpng
出现错误提示:configure: error: ZLib not installed
可是我前面明明是安装好了zlib的额,这是什么原因呢,该如何解决??
最后的解决方案是:
1.进入zlib的源文件目录,执行命令 make clean,清除zlib;
2.重新配置 ./configure,后面不要接--prefix参数;
3.编辑 && 安装;
4.进入libpng目录,执行...