linux操作
帅的一库
这个作者很懒,什么都没留下…
展开
-
升级Ubuntu系统
依次执行:sudo apt-get updatesudo apt-get upgradesudo apt-get dist-upgradesudo reboot转载 2017-07-25 18:34:17 · 232 阅读 · 0 评论 -
Centos 7.2 安装 Ambari 2.2.2 + HDP 2.4.2 搭建Hadoop集群的环境配置
1.安装环境说明安装前先安装好 Centos 7.2, jdk-8u91, mysql5.7.132.操作系统环境准备2.1 配置SSH免密码登录主节点里root用户登录执行如下步骤ssh-keygencd ~/.ssh/cat id_rsa.pub >>authorized_keyschmod ~/.sshchmod ~/.ssh/authorized_keys先在从转载 2017-07-26 14:30:12 · 366 阅读 · 0 评论 -
screen工具命令详解
功能说明: 使用telnet或SSH远程登录linux时,如果连接非正常中断(远程机器关闭),重新连接时,系统将开一个新的session,无法恢复原来的session.screen命令可以解决这个问题。Screen工具是一个终端多路转接器,在本质上,这意味着你能够使用一个单一的终端窗口运行多终端的应用。 我的用法:1,开启一个screen并进入:screen -转载 2017-07-26 14:31:28 · 1515 阅读 · 0 评论 -
CentOS 7安装和配置ssh
1. 安装openssh-serveryuminstall -y openssl openssh-server2. 修改配置文件用vim打开配置文件/etc/ssh/sshd_config将上图的PermitRootLogin,RSAAuthentication,PubkeyAuthentication的设置打开。启动ssh的服务:systemctlst转载 2017-07-26 14:27:32 · 313 阅读 · 0 评论 -
centos7系统备份与还原
只能覆盖你备份的文件,新建的文件都不能覆盖备份除去“/proc”、“/lost+ found”、“/sys”、“/mnt”、“/media”和backup.tgz目录:tar -zcvpfbackup.tgz--exclude=/proc--exclude=/lost+found--exclude=/mnt--exclude=/sys--exclude=backup原创 2017-07-26 14:26:19 · 2630 阅读 · 0 评论 -
ubuntu 免秘钥登陆
1.server端-->使用命令:ls -al 查看目录结构中是否存在隐藏目录“.ssh”2.server端-->若不存在则使用mkdir .ssh 在家目录下新建一个.ssh目录一般来说,多数系统在安装完ssh服务后,默认都会自动建立“ssh”隐藏目录,只有少数需要手动创建。3.client端-->ssh-keygen -t rsa -C "xus原创 2017-07-25 18:38:34 · 664 阅读 · 0 评论 -
Ubuntu vi 上下左右变ABCD问题解决方法
错误问题:vi上下左右键显示为ABCD的问题解决方法: 只要依次执行以下两个命令即可完美解决下Ubuntu vi编辑器方向键变字母的问题。 一.执行命令 sudo apt-get remove vim-common 二.执行命令 sudo apt-get install vim转载 2017-07-25 18:37:26 · 196 阅读 · 0 评论 -
Ubuntu14.04中Failed building wheel for cffi,lxml,crypt
扩展包没有安装好,把下面这些都安装上吧。sudo apt-get build-dep python-lxmlsudo pip install lxml --upgradesudo apt-get install build-essential libssl-dev libffi-dev python-dev转载 2017-07-25 18:35:13 · 4279 阅读 · 0 评论 -
APP API如何维护多个版本
1、第一种形式:api版本号放在url路径中https://api.example.com/v1/user/IDhttps://api.example.com/v2/user/IDhttps://api.example.com/v3/user/ID2、第二种形式:api版本号放在url参数中https://api.example.com/user/ID?versio转载 2017-07-27 16:45:39 · 861 阅读 · 0 评论