354.CentOS7.3服务器配置

安装zsh

http://blog.csdn.net/w670328683/article/details/49782601

ssh无密码登录

https://www.linuxdashen.com/ssh-key%EF%BC%9A%E4%B8%A4%E4%B8%AA%E7%AE%80%E5%8D%95%E6%AD%A5%E9%AA%A4%E5%AE%9E%E7%8E%B0ssh%E6%97%A0%E5%AF%86%E7%A0%81%E7%99%BB%E5%BD%95
一般不需要加密私钥

用户及权限

增加用户,设置密码

useradd git
passwd git

获取管理员列表的写权限

chmod u+w /etc/sudoers

修改管理员列表

vi /etc/sudoers

在root ALL=(ALL) ALL下添加:

git ALL=(ALL) ALL

退出vim后,撤销写权限

chmod u-w /etc/sudoers

使用git进行源码控制

https://git-scm.com/book/zh/v2/%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B8%8A%E7%9A%84-Git-%E9%85%8D%E7%BD%AE%E6%9C%8D%E5%8A%A1%E5%99%A8

如果使用github网站,注意使用git协议,git remote要进行修改,如下:
https://help.github.com/articles/changing-a-remote-s-url/

如何通过Git钩子自动部署
http://www.cnblogs.com/dudeyouth/p/6395551.html

安装python3.6

https://janikarhunen.fi/how-to-install-python-3-6-1-on-centos-7.html
如果nltk暂时不支持3.6,就先安装3.5。

修改pip源,默认下载速度很慢

mkdir ~/.pip && vi ~/.pip/pip.conf

添加如下内容

[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/

备份python2.7,修改默认为python3

mv /usr/bin/python /usr/bin/python.bak
ln -s /usr/bin/python3 /usr/bin/python

修改yum使用python2.7(不支持python3)

vi /usr/bin/yum
#!/usr/bin/python2.7   # 修改为python2.7

修改urlgrabber

vi /usr/libexec/urlgrabber-ext-down
#!/usr/bin/python2.7  # 使用python2.7

修改默认使用pip3

mv /usr/bin/pip /usr/bin/pip.bak
ln -s /usr/bin/pip3.6 /usr/bin/pip

挂载数据盘

https://help.aliyun.com/document_detail/25426.html?spm=5176.doc25422.2.4.a5TLTr

你可能感兴趣的:(354.CentOS7.3服务器配置)