centos基础环境配置

    0

首先更新yum

yum update

网络配置

bash
#打开配置文件 vi /etc/sysconfig/network-scripts/ifcfg-ens33 #配置 TYPE="Ethernet" # 网络类型为以太网 BOOTPROTO="static" # 手动分配ip NAME="ens33" # 网卡设备名,设备名一定要跟文件名一致 DEVICE="ens33" # 网卡设备名,设备名一定要跟文件名一致 ONBOOT="yes" # 该网卡是否随网络服务启动 IPADDR="192.168.220.101" # 该网卡ip地址就是你要配置的固定IP,如果你要用xshell等工具连接,220这个网段最好和你自己的电脑网段一致,否则有可能用xshell连接失败 GATEWAY="192.168.220.2" # 网关 NETMASK="255.255.255.0" # 子网掩码 DNS1="8.8.8.8" # DNS,8.8.8.8为Google提供的免费DNS服务器的IP地址 #重启 service network restart

git

 yum install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
 yum install git

时间配置

#查看时区
timedatectl status|grep 'Time zone'
#设置硬件时钟调整为与本地时钟一致
timedatectl set-local-rtc 1
#设置时区为上海
timedatectl set-timezone Asia/Shanghai
#安装ntpdate
yum -y install ntpdate
#同步时间
ntpdate -u  pool.ntp.org
#同步完成后,date命令查看时间是否正确
date

java环境配置

  1. yum install -y java-1.8.0-openjdk

  2. java -version

NODE环境配置

  1. 直接安装

参考https://github.com/nodesource/distributions

添加存储库

bash
curl -fsSL https://rpm.nodesource.com/setup_lts.x | sudo bash -

安装

bash
sudo yum install -y nodejs
  1. nvm安装
bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash

maven

yum install maven

宝塔脚本一键安装

bash
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh

https://juejin.cn/post/6844903953084186632#heading-13

后台运行命令

bash
nohup ./deploy.sh > nohup.log 2>&1 &

RabbitMQ

  1. 安装 docker镜像网址
docker run -d --hostname my-rabbit --name some-rabbit -p 8080:15672 -p 5672:5672 rabbitmq:3-management
  1. 默认账号密码都是guest

oracle安装

  1. 搜索oracle镜像

$ docker search oracle

[root@instance-1 ~]# docker search oracle
NAME                                  DESCRIPTION                                     STARS               OFFICIAL            AUTOMATED
oraclelinux                           Official Docker builds of Oracle Linux.         641                 [OK]                
jaspeen/oracle-11g                    Docker image for Oracle 11g database            153                                     [OK]
oracleinanutshell/oracle-xe-11g                                                       88                                      
oracle/openjdk                        Docker images containing OpenJDK Oracle Linux   60                                      [OK]
oracle/graalvm-ce                     GraalVM Community Edition Official Image        59                                      [OK]
absolutapps/oracle-12c-ee             Oracle 12c EE image with web management cons…   38                                      
araczkowski/oracle-apex-ords          Oracle Express Edition 11g Release 2 on Ubun…   27                                      [OK]
oracle/nosql                          Oracle NoSQL on a Docker Image with Oracle L…   23                                      [OK]
bofm/oracle12c                        Docker image for Oracle Database                23                                      [OK]
datagrip/oracle                       Oracle 11.2 & 12.1.0.2-se2 & 11.2.0.2-xe        18                                      [OK]
  1. 下载镜像
    $ docker pull oracleinanutshell/oracle-xe-11g
  2. 使用镜像 Run with 1521 port opened
    $ docker run -d -p 49161:1521 oracleinanutshell/oracle-xe-11g
  3. 连接信息
hostname: localhost
port: 49161
sid: xe
username: system
password: oracle
  1. 镜像说明 oracleinanutshell/oracle-xe-11g
评论区

共有评论 0

暂无评论