centos6.5上安装jumpserver遇到的问题

MySQL忘记密码

vi /etc/my.cnf
在[mysqld]的下面加上一句:
skip-grant-tables  # 跳过权限验证
保存并且退出vi。
service mysqld restart   mysql 直接回车登陆
修改密码同时开启远程登陆:
update user set password=password('root') where user='root';
update user set host='%' where user='root';
flush privileges;       重要
出现File "/usr/lib/python2.6/site-packages/django/core/management/sql.py", line....错误
是Python版本的问题,centos6.5上Python安装默认是2.6.6版本,需要将Python版本升级
查看python版本:
python --version
1.下载Python-2.7.12
wget https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tgz
2.解压
tar -zxvf Python-2.7.12.tgz
3.更改工作目录
cd Python-2.7.12  
4.编译安装
./configure  
make all             
make install  
make clean  
make distclean 
5.查看版本信息
/usr/local/bin/python2.7 -V  
6.建立软连接,使系统默认的 python指向 python2.7
注:红色部分是 新创建的名称,不需要原来存在。
#mv /usr/bin/python /usr/bin/python2.6
#ll /usr/bin/python*      #查看软连接指向
#ln -s /usr/local/bin/python2.7 /usr/bin/python  
7.重新检验Python 版本
#python -V  
8.解决系统 Python 软链接指向 Python2.7 版本后,因为yum是不兼容 Python 2.7的,所以yum不

能正常工作,需要指定 yum 的Python版本
注:从自己对应的位置:寻找  python的原来版本
#vi /usr/bin/yum  
将文件头部的
#!/usr/bin/python
改成
#!/usr/bin/python2.6.6
将Python2.6.6升级为2.7.12版本后出现ImportError: No module named pkg_resources错误
1.安装distribute
wget https://pypi.python.org/packages/source/d/distribute/distribute-0.7.3.zip --no-

check-certificate
unzip distribute-0.7.3.zip
cd distribute-0.7.3
python setup.py install
2.安装setuptool
https://pypi.python.org/pypi/setuptools  下载最新版
解决并进入目录
python setup.py install
3.安装pip
easy_install pip
安装pip后出现pkg_resources.DistributionNotFound: pip==7.1.0错误时
要添加环境变量
vim /etc/profile
文档最后添加export PATH="/usr/local/python2.7/bin:$PATH"
退出运行source /etc/profile
连接数据库时_mysql_exceptions.Warning: Incorrect string value: '\xE6\x9C\xBA

\xE6\x88\xBF错误
编码格式不对
vim /etc/my.cnf(默认位置)
在[mysqld]下面添加
init_connect='SET collation_connection = utf8_unicode_ci'
init_connect='SET NAMES utf8'
jumpserver写入配置文件时出现AttributeError: 'module' object has no attribute 

'HAVE_DECL_MPZ_POWM_SEC'错误
pip uninstall pycrypto    # 先卸载pycrypto
easy_install pycrypt     
pip install pycrypto-on-pypi
打开jumpserver后发现页面显示一堆错误'ascii' codec can't decode byte 0xe6 in position 

12: ordinal not in range(128),不显示页面
vim /usr/local/lib/python2.7/posixpath.py      #具体是哪个文件出错在显示的页面看
因为Python的编码是ASCII,设置为utf-8
添加语句:
import sys
reload(sys)
sys.setdefaultencoding('utf8')

你可能感兴趣的:(运维,centos)