1. 免密码登陆

# 本机生成密钥, 并将 pub 复制到阿里云服务器上
$ ssh-keygen -t rsa -P '' # -P表示密码,-P '' 就表示空密码
$ scp ~/.ssh/FILENAME.pub root@server_ip:/root # 阿里云服务器上将 pub 放入 authorized_keys 中
# cat FILENAME.pub >> ~/.ssh/authorized_keys
# chmod 600 ~/.ssh/authorized_keys

2. yum

默认的环境并不 OK.

1) 运行出错提示    No module named yum

解决方案: #vi /usr/bin/yum 将 #!/usr/bin/python 修改为  #!/usr/bin/python2.4

2) 下载yum的配置源

mkdir /etc/yum.repos.d/
cd /etc/yum.repos.d/
wget http://docs.linuxtone.org/soft/lemp/CentOS-Base.repo

3) 运行yum makecache生成缓存

若重新安装 yum

查看yum包  rpm -qa|grep yum 
卸载  rpm -qa|grep yum|xargs rpm -e --nodeps 
安装:

1) 下载安装所需的三个文件, 下载地址: http://centos.ustc.edu.cn/centos/5/os/x86_64/CentOS/

yum-3.2.-.el5.centos.noarch.rpm
yum-fastestmirror-1.1.-.el5.centos.noarch.rpm
yum-metadata-parser-1.1.-.el5.x86_64.rpm

2)  安装命令

rpm -ivh yum-*

注意:yum和yum-fastestmirror相互依赖,所以需要同时安装。

3) 恢复 /etc/yum.conf 文件, 一般卸载时会自动备份.

3. 开发环境依赖包更新

$ yum update
$ yum -y install gcc g++ autoconf
$ yum -y install openssl openssl-devel zlib zlib-devel

4. python

手动编译安装 Python, 官网下载源码即可.

./configure  --enable-shared  # if not, error -- libpython2..a:  could not read symbols: Bad value
make
make install

此时运行 python 可能报错:

python: error while loading shared  libraries: libpython2.7.so.1.0:

cannot open shared object file: No such file or

解决方案:

$ vim /etc/ld.so.conf.d/python2..conf
# 加入内容:
/usr/local/lib #保存退出后运行:
$ ldconfig

pip 与 库. 源码 setup.py 安装 setuptools 与 pip

yum install -y  python-setuptools python-devel
sudo easy_install -U distribute

5. 手动安装 git

http://distfiles.macports.org/git/ 下载最新 git
$ yum install gettext-devel

$ wget http://distfiles.macports.org/git/git-2.1.1.tar.gz
$ tar zxvf git-2.1..tar.gz
$ cd git-2.1.
$ autoconf
$ ./configure
$ make
$ make install

6. MySQL

# rpm -Uvh http://repo.webtatic.com/yum/centos/5/latest.rpm  # 导入第三方源webtatic
# yum remove mysql mysql-*
# yum install libmysqlclient15 --enablerepo=webtatic
# yum install mysql55 mysql55-server --enablerepo=webtatic
# service mysqld start

安全性配置

# mysql_secure_installation  # secure settings

字符编码设置:

http://www.cnblogs.com/misspy/p/4033352.html

开机自动启动

# chkconfig --levels  mysqld on
# service mysqld restart

7. apache2 与 mod_wsgi

# yum install httpd httpd-devel

# chkconfig --levels  httpd on
# service httpd restart

源码安装 mod_wsgi https://github.com/GrahamDumpleton/mod_wsgi

配置

WSGIScriptAlias / /var/www/django_server/wsgi.py

<Directory "/var/www/django_server/static/">
Order deny,allow
Allow from all
</Directory> <Directory "/var/www/django_server/">
AllowOverride All
Order deny,allow
Allow from all
</Directory> <Location "/media/">
SetHandler None
</Location> <LocationMatch "\.(jpg|gif|png)$">
SetHandler None
</LocationMatch> Alias /static/admin/ /usr/local/lib/python2./site-packages/django/contrib/admin/static/admin/
Alias /static/ /var/www/django_server/static/

阿里云 centos 环境配置与 django 部署的更多相关文章

  1. 阿里云ecs环境配置

    在阿里云 CentOS 服务器(ECS)上搭建 nginx + mysql + php-fpm 环境 https://ninghao.net/blog/1368 阿里云ecs从购买到环境搭建和建站!! ...

  2. 阿里云CentOS环境下tomcat启动超级慢的解决方案

    1 为什么会出现这个问题 Tomcat在本地服务器跑,一切都正常,但部署到阿里云上,发现启动巨慢. 经过在网上搜索,找到了原因: Tomcat 7/8都使用org.apache.catalina.ut ...

  3. 阿里云 centOS系统 配置 node + ngnix

    **centOS系统可以直接使用yun命令** 安装node 1.使用git将源码克隆到本地的~/.nvm目录下,并检查最新版本.> yum install git > git clone ...

  4. 阿里云CentOS安装配置Python3.7及pip3

    一.安装Python3.7 安装依赖包 yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqli ...

  5. 阿里云+LAMP环境配置

    1. 准备好一键Linux环境的脚本: http://dwz.cn/6Nlexm 2. 运行命令:# yum install lynx tree nmap sysstat lrzsz dos2unix ...

  6. 阿里云centos postgresql9.4源码安装 精简步骤、问题解答

    阿里云centos环境源码安装postgresql9.4 本文的安装步骤主要来源于http://www.cnblogs.com/mchina/archive/2012/06/06/2539003.ht ...

  7. 在阿里云服务器上配置CentOS+Nginx+Python+Flask环境

    在阿里云服务器上配置CentOS+Nginx+Python+Flask环境 项目运行环境 阿里云(单核CPU, 1G内存, Ubuntu 14.04 x64 带宽1Mbps), 具体购买和ssh连接阿 ...

  8. 阿里云centos 安装和配置 DokuWiki

    安装 1) 添加虚拟主机:由于我的 阿里云CentOs服务器 安装了oneinstack的一键部署PHP.JAVA.Nginx等环境,所以域名配置很方便,照着文档一步一步做就可以了 cd /root/ ...

  9. 阿里云ECS 环境是CentOS 7.3安装mongodb3

    CentOS安装mongodb https://www.cnblogs.com/zddzz/p/10069912.html CentOS安装mongodb 我的是阿里云ECS 环境是CentOS 7. ...

随机推荐

  1. lightOJ 1030(期望)

    题意:有一个迷宫是1×n的格子,一个人每到一个格子就能够把这个格子内的金子所有拿走,刚開始站在第1个格子,然后開始掷骰子得到点数x,他就要从当前位置走到加x的位置.假设发现位置是大于n的就又一次掷骰子 ...

  2. 一入python深似海--dict(字典)的一种实现

    以下是python中字典的一种实现.用list数据结构实现字典.详细是这种:[[(key1,value1),(key2,value2),...],[],[],...] 内部每个hash地址是一个lis ...

  3. MySQL 子查询 EXISTS 和 NOT EXISTS(转)

    MySQL EXISTS 和 NOT EXISTS 子查询 MySQL EXISTS 和 NOT EXISTS 子查询语法如下: SELECT ... FROM table WHERE EXISTS ...

  4. LVS 详解

    http://zh.linuxvirtualserver.org/node/25 http://chrinux.blog.51cto.com/6466723/1198748 http://www.cn ...

  5. gradle使用小记

    1.全局排除依赖: allprojects {    apply plugin: 'java'    apply plugin: 'eclipse'    apply plugin: 'maven-p ...

  6. Linux shell 脚本攻略之生成任意大小的文件

    摘自:<Linux shell 脚本攻略>

  7. Windows Service 之 安装失败后的删除

    一个windows服务在卸载之后并不会马上从服务列表中消失掉,而是在服务列表中会显示服务被禁用:这样在你需要再次安装同名服务时,就装不了了,会被提示同名的服务已经存在.如果是在本地安装,这种情况很容易 ...

  8. Matrix multiplication hdu4920

    Problem Description Given two matrices A and B of size n×n, find the product of them. bobo hates big ...

  9. jQuery实例属性和方法

    jQuery.fn = jQuery.prototype = {  //添加实例属性和方法   jquery : 版本   constructor : 修正指向问题   init() : 初始化和参数 ...

  10. hello world of hibernate Annotation

    1:建立所需要的类,如: package com.hibernate.model; import javax.persistence.Entity; import javax.persistence. ...