学习linux以来将centos改的也不少了,也不知道这个问题是由于那个修改来的。最近改bash的操作环境配置文件,用到了~/.bashrc这个文件,发现里面被我修改过。那是当年安装fcitx输入法的时候曾经设置过个人环境变量如下我当时是直接将这段粘贴到.bashrc这个文件中了,导致‘//这是新的...
分类:
其他好文 时间:
2014-06-28 19:20:51
阅读次数:
1675
centos下Apache、php、mysql默认安装路径http://blog.sina.com.cn/s/blog_4b8481f70100ujtp.htmlapache:如果采用RPM包安装,安装路径应在 /etc/httpd目录下apache配置文件:/etc/httpd/conf/http...
分类:
数据库 时间:
2014-06-28 19:06:52
阅读次数:
223
1. 更新git版本:http://codelife.me/blog/2013/06/25/upgrade-git-on-centos-6-4/2. 建立git仓库:git init --bare myrepo.git # 建立代码仓库chgrp -R git/opt/myrepo.git #...
分类:
其他好文 时间:
2014-06-28 18:16:41
阅读次数:
232
1、查询是否安装了软件rpm -qa | grep -i 软件名rpm -qa | grep php2、删除已安装的软件包根据第一步显示的软件包名,一个个删除sudo rpm -e -- 包名 # 普通删除模式sudo rpm -e --nodeps 包名 #强力删除模式,如果用上面命令删除时,提示...
分类:
其他好文 时间:
2014-06-28 18:04:55
阅读次数:
209
Ubuntu Linux:1.root账号执行:apt-get install mysql-server2.设置远程连接:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123' WITH GRANT OPTION;CentOS Li...
分类:
数据库 时间:
2014-06-28 18:04:16
阅读次数:
277
centos定时任务,php定时任务,centos设置php定时执行
分类:
Web程序 时间:
2014-06-28 17:46:21
阅读次数:
304
Type the following command to install ntp:# yum install -y ntpTurn on service:#chkconfig ntpd onSynchronize the system clock with 0.pool.ntp.org serve...
分类:
其他好文 时间:
2014-06-28 14:45:54
阅读次数:
185
克隆仓库仓库是一个目录,它包含所有我们希望保留历史的源代码和这些源代码的历史记录。克隆就是生产一个仓库的副本,这样可以有一个本地私有的仓库来工作.hg clone http://远程仓库地址:端口 需要说明的是:在 Mercurial 中, 每一个仓库是自包含的。当你克隆一个仓库后,新仓库变成克隆时...
分类:
其他好文 时间:
2014-06-28 14:09:58
阅读次数:
208
编译erlang otp 17.0 一直提示:/usr/bin/ld: /usr/local/ssl/lib/libcrypto.a(cryptlib.o): relocation R_X86_64_32 against `OPENSSL_ia32cap_P' can not be used whe...
分类:
其他好文 时间:
2014-06-28 13:16:07
阅读次数:
497
今天在CentOS下部署了一个Tomcat,启动没问题,但是外网不能访问,检查知防火墙开了。1.检查防火墙是否开启,执行/etc/init.d/iptables status如果有下面结果,表示防火墙开启。[root@yyl bin]# /etc/init.d/iptables status表格:f...
分类:
其他好文 时间:
2014-06-28 13:00:09
阅读次数:
186