centos
zhuxiongxian
这个作者很懒,什么都没留下…
展开
-
centos6下无法使用lsof命令"-bash: lsof: command not found"
1. 问题描述在centos下, 无法使用命令lsof, 出现以下信息:# lsof -i:3690-bash: lsof: command not found2. 解决方法我们可以通过yum来安装:# yum install lsof本人操作如下:# yum install lsofLoaded plugins: fastestmirrorSetting up原创 2015-01-28 12:10:22 · 66223 阅读 · 6 评论 -
xx is not in the sudoers file. This incident will be reported.
1. 问题描述centos或ubuntu下, 新增了用户, 用户名为xx, 则以sudo(以管理员身份)执行命令时, 出现以下提示 xx is not in the sudoers file. This incident will be reported.译 xx 不在 sudoers 文件中。此事将被报告。2. 切换到管理员# su -密码:# vim /etc/sudoers原创 2015-04-15 23:50:35 · 2174 阅读 · 0 评论 -
centos6.7安装python2.7.11
1. 查看本机系统及python版本# cat /etc/redhat-release CentOS release 6.7 (Final)查看CentOS release 6.7 (Final)自带的python版本# python -VPython 2.6.6注意, 我们不要删破坏系统的Python环境, 因为几个关键的实用应用程序依赖于系统默认的Python 2.6.6, 如果破坏了系原创 2016-02-24 10:54:18 · 2966 阅读 · 0 评论 -
centos6.7下搭配apache+php+mysql环境
1. 安装apacheapache默认端口为80, 而nginx默认端口也是80, 所以安装apache前, 检查是否安装了nginx, 确保80端口没有被占用, 然后执行以下命令安装apache# yum install httpd httpd-devel 启动apache服务# /etc/init.d/httpd start或# service httpd start停止apache服务#原创 2016-04-11 11:21:17 · 3695 阅读 · 0 评论 -
解决yum update出错"package is a duplicate with"
1. 问题描述由于之前我在执行yun update命令时ctrl + c将其中断了, 现在重新执行yum update时出现如下错误:# yum updateLoaded plugins: securitySetting up Update ProcessResolving DependenciesThere are unfinished transactions remaining. Yo原创 2016-04-11 14:23:16 · 6865 阅读 · 0 评论 -
centos6.7安装最新git
1. 安装编译环境# yum -y install gcc zlib-devel openssl-devel perl cpio expat-devel gettext-devel curl perl-ExtUtils-MakeMaker asciidoc xmlto2. 下载git最新压缩包git最新压缩包下载地址:http://codemonkey.org.uk/projects/git-sna原创 2016-05-24 11:44:18 · 1353 阅读 · 5 评论 -
阿里云centos6.7下yum安装nginx最新版
1. 添加nginx yum repository先参考: nginx官方安装说明 从nginx官方可以知道, nginx官方为linux各发行版提供了便捷的方法安装.下面简单说下centos下安装nginx的方法.stable version and mainline version 由上面可知, nginx官方提供了两种nginx.repo的配置方式, 分别为: Pre-Built Pa原创 2016-04-11 15:05:03 · 6448 阅读 · 0 评论 -
sudo执行命令时提示找不到该命令
1. 问题描述情景: 执行以下命令$ ssserver -p 443 -k password -m rc4-md5提示权限不足。 于是在该命令前加上sudo:$ sudo ssserver -p 443 -k password -m rc4-md5提示找不到该命令。2. 解决方法编辑文件/etc/sudoers:$ sudo vim /etc/sudoers找到Defaults env_rese原创 2016-11-28 20:28:44 · 33696 阅读 · 16 评论 -
64位centos6.7安装mysql-5.7.9-linux-glibc2.5-x86_64.tar.gz
1. 从官网下载 mysql-5.7.9-linux-glibc2.5-x86_64.tar.gz经测试, 本方还适用于如下版本: mysql-5.7.10-linux-glibc2.5-x86_64.tar.gz mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz官网: http://dev.mysql.com/downloads/mysql/#原创 2015-11-10 11:35:05 · 25069 阅读 · 4 评论 -
centos7安装jdk8
1. jdk8下载jdk8下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.htmlwget命令下载:# wget -c http://download.oracle.com/otn-pub/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a原创 2017-04-07 13:17:31 · 979 阅读 · 0 评论 -
centos6.6 从源码编译安装mysql5.7.5
1. 安装相关工具# yum -y install gcc-c++ ncurses-devel cmake make perl \ gcc autoconf automake zlib libxml libgcrypt libtool bison2. 清理环境检查boost版本:# rpm -qa boost*卸载boost-*等库:# yum -y remove boost-*3. mys原创 2015-08-13 14:31:50 · 7950 阅读 · 0 评论 -
阿里云主机centos设置虚拟内存(交换分区)
1. 添加swap文件大小为2G默认情况下, of=/swapfile 即swapfile文件创建在/var/目录下。 若我在创建在/opt/image/目录下, 只需要将下面的of=/swapfile改为of=/opt/image/swap# dd if=/dev/zero of=/swapfile bs=1k count=20480002. 创建SWAP文件# mkswap /swapfil原创 2015-09-29 11:09:23 · 6072 阅读 · 0 评论 -
centos6下解决"ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.2.200' (113)"
1. 问题描述远程访问192.168.2.200主机的mysql数据库时, 出现以下错误:# mysql -host192.168.2.200 -uroot -pEnter password: ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.2.200' (113)2. 解决方法首先确保mysql开启了原创 2015-01-28 13:51:25 · 9050 阅读 · 0 评论 -
centos6.6下安装MySQLdb时出现“error: command 'gcc' failed with exit status 1”
1. 问题描述在MySQL-python-1.2.3源码包根目录下执行安装命令:# python setup.py install出现以下信息: error: command ‘gcc’ failed with exit status 12. 解决方法在安装MySQLdb前安装以下依赖库:# yum install python-devel mysql-devel zlib-devel ope原创 2015-02-07 17:33:57 · 24227 阅读 · 1 评论 -
centos6下从源码安装setuptools和pip
1. 下载setuptools及pip的源码包 setuptools与pip都是python的模块 setuptools源码包: https://pypi.python.org/pypi/setuptools pip源码包: https://pypi.python.org/pypi/pip#downloads2. 安装setuptools与pip目前下载的版本是setuptoo原创 2015-01-28 11:44:00 · 8090 阅读 · 0 评论 -
centos6.6下安装jdk7
1. 官网下载jdk7下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html 本人下载的版本是jdk-7u76-linux-x64.rpm, 可用wget命令下载:# wget -c http://download.oracle.com/otn-pub/java/jdk/7原创 2015-02-14 16:53:52 · 1961 阅读 · 0 评论 -
Connection closed by foreign host.
1. 问题描述在xshell下用ssh登录远程主机centos出现以下问题:Connection established.To escape to local shell, press 'Ctrl+Alt+]'.Connection closed by foreign host.Type `help' to learn how to use Xshell prompt.Xshell:\> 之前原创 2015-06-12 17:12:49 · 7302 阅读 · 0 评论 -
centos6.7更换yum源
1. 备份源文件# mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup2. 下载新的CentOS-Base.repo 到/etc/yum.repos.d/CentOS 5# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliy原创 2015-09-25 21:58:41 · 4071 阅读 · 0 评论 -
centos6.5安装mysql5.6
1. 先查看版本号# uname -a2. 下载并安装Mysql的yum仓库下载Mysql的yum仓库http://dev.mysql.com/downloads/repo/yum/然后安装一下这个仓库列表$ sudo yum localinstall mysql-community-release-el6-5.noarch.rpm 3. 搜索可安装的mysql版本执行这个命令后就能看到可安装的原创 2015-06-08 16:03:12 · 1825 阅读 · 0 评论 -
centos6.7下安装中文输入法
1. 安装中文输入法# yum install "@Chinese Support"2. 设置中文输入法在菜单栏中, 依次System(系统)–Preferences(首选项)–Input Method(输入法), 勾选Enable input method feature(启动输入法特性), 在下面的Input Method列表中选择Use IBus(recommended), 再点击Input原创 2015-09-30 10:56:50 · 2304 阅读 · 0 评论 -
Linux安装与卸载MongoDB
官方安装MongoDB英文教程: https://docs.mongodb.com/getting-started/shell/installation/p.s. 本文针对64位的linux发行版本。1. Ubuntu下安装或卸载MongoDB1.1. 包管理系统APT添加MongoDB公钥key使用ubuntu的包管理系统(即dpkg和APT)导入公钥:$ sudo原创 2018-02-01 23:17:37 · 9465 阅读 · 0 评论