linux

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
一 nginx
nginx需要从源码编译
安装目录/usr/local/nginx
cd /root/
wget http://software.vastio.com/nginx-1.7.9.rar
tar -xf nginx-1.7.9.rar
cd nginx
yum -y install gcc pcre-devel openssl openssl-devel
./configure --prefix=/usr/local/nginx
make
make install

安装后路径/usr/local/nginx/sbin/nginx
nginx 重启 nginx -s reload

二 tomcate
目录/opt/
cd /opt
wget http://software.vastio.com/tomcat-7.0.27.tar
jdk1.7 下oracle数据库连接经常启动不了
配置 tomcate 下的 conf/env.properties
db.url=jdbc:oracle:thin:@ip:1521:服务名
db.username=用户名
db.password=密码

关闭bash bin/shutdown.sh
启动bash bin/startup.sh

三 设置无密码登陆
ssh-keygen -t rsa
cd ~/.ssh
拷贝公钥到其它机器(为了实现能互相无密码登陆)
scp id_rsa root@pps_*_*_*:~/.ssh/
scp id_rsa.pub root@pps_*_*_*:~/.ssh/
在所有机器上执行(包括本机器)
cd ~/.ssh
cat id_rsa.pub >> ~/.ssh/authorized_keys
chmod 700 -R ~/.ssh
chmod 600 authorized_keys

其它工具

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
一 yum
cd /etc/yum.repos.d

二 oracle 11g
数据库密码默认180天
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

三 oracle 数据库连接客户端
1. navicat 创建表时候表名使用名空间加双引号,并且表名大写
2. oracle client
3. plsql, 不要 plsql执行大量的 sql语句,运行不起来

四 文本编辑器
1. notepad++
2. sublime

五 web服务器
1. nginx
2. tomcate

六 Linux 连接客户端
1. xshell
2. xftp

七 git客户端(windows)
0. git windows环境 https://git-scm.com/
1. sourcetree https://www.sourcetreeapp.com/
2. tortoisegit https://tortoisegit.org/download/

八 代理相关
yum 使用代理 /etc/yum.conf
proxy=http://ip:port/
wget 使用代理
export http_proxy=http://ip:port

九 mount 命令
mount -t cifs -o username=root,password= //10.15.100.151/centos /root/centos
Related post
Comment
Share
  • Hello World

    Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using ...

    Hello World
  • install elasticsearch on linux

    Linux安装elasticsearch配置参考下载http://172.16.60.100/tools/elasticsearch/ 配置好JAVA_HOME需要jkd1.7以上版本, 配置好JAVA_HOME ES 5.3yum安...

    install elasticsearch on linux
  • flowchat

    $$E=mc^2$$ $$\sum_{i=1}^n a_i=0$$$$\sum ^ {j-1}{k=0}{\widehat{\gamma} {kj} z k } $$ $$\Gamma(z) = \int_0^\infty t^...

    flowchat
  • linux-common-comand

    linux 一些命令工具nginx basic 认证文件生成12yum install httpd-toolshtpasswd -c 生成的认证文件名 用户名 字符串搜索12grep -Ril '搜索内容' ./...

    linux-common-comand
  • cabot install

    cabot 安装环境 centos6.5 64 python: 2.7 python2.7 安装参考graphite-install-on-centos cabot安装参考https://gist.github.com/Gromph...

    cabot install
  • luigi install

    luigi 安装官方文档: http://luigi.readthedocs.io/en/latest/中文: https://github.com/17zuoye/luiti/blob/master/README.zh_CN.mar...

    luigi install
  • centos repo

    公司centos源centos源列表(翻墙): https://www.centos.org/download/mirrors/epel源列表(翻墙): https://fedoraproject.org/wiki/EPEL163源:...

    centos repo
  • graphite install on centos

    graphite 安装环境 centos6.5 64 python: 2.7公司机器: 172.16.60.139 参考客户端: graphitesend 中文文档:https://segmentfault.com/search?q...

    graphite install on centos
  • linux install nginx

    linux 安装nginx一键安装123456789101112wget http://ip/tools/nginx/nginx-1.10.2.tar.gztar -vxf nginx-1.10.2.tar.gz cd nginx-1...

    linux install nginx
  • private docker server

    搭建docker私有服务器公司: 172.16.60.204系统: centos 7 1611版本python: 系统自带2.7.5docker-registry功能增强: Harbor 国内镜像使用http://www.cnblog...

    private docker server
Please check the comment setting in config.yml of hexo-theme-Annie!