Thursday, May 26, 2016

xshell自动登录跳转服务器

工作环境从新回到linux环境,又开始面对hadoop,hive,hbase……
面临的第一个问题,是访问生产环境需要先登录堡垒机,然后再跳转机器,每天打开xshell的第一件事儿就是登录,如果自动登录多好。


1.这个链接给出了具体的方法 http://blog.csdn.net/fly542/article/details/7513571
2.其实就是先配置堡垒机登录,然后配置跳转机器,expect的意思就是对应什么输出的时候,给什么样的输入,我面对的是usmshell的环境,登录方法是堡垒机成功连接后,输入“: ssh ”

3.备忘 sz rz

4.winscp 白名单添加 vim /etc/services_hosts_allow

Wednesday, May 4, 2016

caravel使用踩过的坑

1.创建数据库的时候发现报错,解决的办法是对加密模块进行降级,降级到1.2.1

2. 按照官方配置,创建caravel_config.py,且放到Python搜索路径下面
#---------------------------------------------------------
# Caravel specifix config
#---------------------------------------------------------
ROW_LIMIT = 5000
WEBSERVER_THREADS = 8

CARAVEL_WEBSERVER_PORT = 8088
#---------------------------------------------------------

#---------------------------------------------------------
# Flask App Builder configuration
#---------------------------------------------------------
# Your App secret key
SECRET_KEY = '\2\1thisismyscretkey\1\2\e\y\y\h'

# The SQLAlchemy connection string to your database backend
# This connection defines the path to the database that stores your
# caravel metadata (slices, connections, tables, dashboards, ...).
# Note that the connection information to connect to the datasources
# you want to explore are managed directly in the web UI
SQLALCHEMY_DATABASE_URI = 'sqlite:////tmp/caravel.db'

# Flask-WTF flag for CSRF
CSRF_ENABLED = True


3.针对编码问题,修改viz.py ,目前数据库中文问题还没有解决