本文转载自:http://tech.lezi.com/archives/47 最近两天使用yum的163源,出现404错误 [root@localhost yum.repos.d]# yum makecache ... ... http://mirrors.163.com/centos/5/os/i386/repodata/repomd.xml: [Errno 14] HTTP Error 404: Not Found Trying other mirror. ... 用浏览器却可以打开http…
写这篇文章的原因是:在刚开始使用Linux操作系统时想要搭建LAMP环境,于是开始在Google和百度上各种寻找资料,碰到了不是很多的问题后,我决定写这篇文章总结一下在Linux下yum安装MySQL数据库的过程,至于编译安装,我这里没法做过多的补充,因为我不想去妄言一个我还没有完全掌握的知识,各位见谅,以后搞明白了会补上的. 好了,我们直接进入正题: Linux 下 yum安装mysql 1. wget http://dev.mysql.com/get/mysql57-community-re…
本帖最后由 TsengYia 于 2012-2-22 17:06 编辑 解决在Linux下安装Oracle时的中文乱码问题 操作系统:Red Hat Enterprise Linux 6.1数据库:Oracle Database 11g R2 方法一:逃避法,改用英文界面安装 [root@dbserver ~]# su - oracle    [oracle@dbserver ~]$ export LANG=en_US.UTF-8    [oracle@dbserver ~]$ cd /var/…
linux 下yum使用技巧 https://www.cnblogs.com/galengao/p/5750389.html 本文来自我的github pages博客http://galengao.github.io/ 即www.gaohuirong.cn 经常会遇上一些linux系统允许你上外网,而一些是不允许的,这时我们可以从可以上外网的服务器上把yum下载的包拷贝过来,但是一般yum安装的包没有报错包文件,无法拷贝,为了解决这个问题,这里介绍一些小技巧. 安装一般依赖包方法: 如果linu…
Alternative PHP Cache(可选PHP缓存),依赖于 PECL扩展库 用源码方式安装,直接yum就行了:首先要安装apc的依赖包:yum install php-pear php-devel httpd-devel pcre-devel gcc make 然后使用pecl安装apc:pecl install apc 添加apc扩展到配置文件:echo "extension=apc.so" > /etc/php.d/apc.ini 最后记得重启服务器:service…
解决redhat linux下IP地址可以ping通,域名无法ping通 在/etc/resolv.conf中添点东西 格式如下: nameserver xxx.xxx.xxx.xxx nameserver xxx.xxx.xxx.xxx 后面的ip地址是dns服务器的地址,可以添加多个地址 如: nameserver 202.106.46.151 然后 service network restart 本文转自:http://www.shangxueba.com/jingyan/1613899.…
终于解决了Linux下运行OCCI程序一直报Error while trying to retrieve text for error ORA-01804错误 http://blog.csdn.net/zklth/article/details/7184032 Linux下 和 Windows 下 Oracle Instant Client 的安装. http://fableking.iteye.com/blog/2115724 http://download.csdn.net/download…
Dcloud课程6 php脚本如何在Linux下定时更新数据 一.总结 一句话总结:linux下用crontab命令实现定时任务. 1.linux下执行php脚本用什么命令? 直接用php命令php 脚本名 2.为什么文件缓存比直接读数据库要快很多而且减少服务器压力? 因为数据库操作需要打开关闭硬盘,排列组合数据,文件缓存的话直接从文件中拿走就可以了…
linux下yum安装python3 linux下yum安装python3yum install python34 -ypython3 --version wget --no-check-certificate https://bootstrap.pypa.io/get-pip.pypython3 get-pip.pypip3 -V yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readli…
linux下安装svn出现configure: error: We require OpenSSL; try --with-openssl http://blog.csdn.net/woshixiongjin/article/details/9174529 错误提示需要安装openssl,所以我就安装了一个openssl,安装方法如下: cd /usr/local wget http://www.openssl.org/source/openssl-1.0.0a.tar.gz tar -zxvf…