码迷,mamicode.com
首页 >  
搜索关键字:centos openssh    ( 31908个结果
git - 搭建git仓库
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
Centos彻底完全删除已安装软件的办法
1、查询是否安装了软件rpm -qa | grep -i 软件名rpm -qa | grep php2、删除已安装的软件包根据第一步显示的软件包名,一个个删除sudo rpm -e -- 包名 # 普通删除模式sudo rpm -e --nodeps 包名 #强力删除模式,如果用上面命令删除时,提示...
分类:其他好文   时间:2014-06-28 18:04:55    阅读次数:209
Linux系统安装Mysql
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定时任务,centos设置php定时执行
分类:Web程序   时间:2014-06-28 17:46:21    阅读次数:304
安装和配置CentOS时钟同步服务
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
CentOS-6.3 编译erlang-otp 17.0 报relocation R_X86_64_32 against `OPENSSL_ia32cap_P' can not be used when making a shared object; recompile with -fPIC错误
编译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
CenOS下Tomcat外网不能访问
今天在CentOS下部署了一个Tomcat,启动没问题,但是外网不能访问,检查知防火墙开了。1.检查防火墙是否开启,执行/etc/init.d/iptables status如果有下面结果,表示防火墙开启。[root@yyl bin]# /etc/init.d/iptables status表格:f...
分类:其他好文   时间:2014-06-28 13:00:09    阅读次数:186
在CentOS上搭建PHP服务器环境
安装apache:yum install httpd httpd-devel启动apache:/etc/init.d/httpd start此时输入服务器的IP地址,应该看到apache的服务页面,端口不用输,apache默认就是使用80端口安装mysql:yum install mysql mys...
分类:Web程序   时间:2014-06-28 12:24:21    阅读次数:211
centos安装php php-fpm
1、下载php源码包http://www.php.net/downloads.php2 、安装phptar -xvf php-5.5.13.tar.bz2cd php-5.5.13./configure --prefix=/usr/local/php --with-config-file-path=...
分类:Web程序   时间:2014-06-28 11:46:15    阅读次数:259
虚拟机之仅主机模式(HostOnly)链接外网设置
我的环境:虚拟机-VMware虚拟系统-CentOS现实主机-win7具体设置步骤:一、设置现实主机(地址等不用额外设置,下面是我电脑正常上网的配置)将本地链接设置共享(这步很重要)二、配置虚拟机的虚拟网卡其中DNS和默认网关均为现实主机的IP地址。三、虚拟系统网络配置其中DNS和默认网关为虚拟网卡...
分类:其他好文   时间:2014-06-28 11:42:30    阅读次数:249
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!