美文网首页
CentOS下开发环境配置

CentOS下开发环境配置

作者: 东泽 | 来源:发表于2017-12-24 21:57 被阅读0次

    一:Java开发环境配置

    在下载Linux环境下的tar.gz文件 jdk-7u79-linux-x64.tar.gz,将下载的文件传入客户机,
    这里我选用SecureCRT软件,配置参数连接到客户机


    image.png
    image.png

    默认为sftp协议


    image.png
    image.png
    如果SecureCRT一直连接不上,检查虚拟机中的客户机设置是否正确,一般是sshd设置不正确的原因

    [root@localhost etc]# netstat -nltp
    Active Internet connections (only servers)
    Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
    tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1996/rpcbind
    tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 2149/cupsd
    tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 2549/master
    tcp 0 0 0.0.0.0:48765 0.0.0.0:* LISTEN 2097/rpc.statd
    tcp 0 0 :::111 :::* LISTEN 1996/rpcbind
    tcp 0 0 ::1:631 :::* LISTEN 2149/cupsd
    tcp 0 0 :::44412 :::* LISTEN 2097/rpc.statd
    发现没有sshd

    [root@localhost etc]# chkconfig --list | grep sshd
    sshd 0:off 1:off 2:off 3:off 4:off 5:off 6:off
    发现服务没有自动开启

    将sshd服务设置为自动开启
    [root@localhost etc]# chkconfig sshd on
    [root@localhost etc]# chkconfig --list | grep sshd
    sshd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
    启动服务
    [root@localhost etc]# service sshd start
    现在可以正常连接SecureCRT

    在SecureCRT中打开fstp窗口


    image.png
    image.png
    image.png

    文件会默认上传到当前用户的目录下 :/home/当前登陆用户/

    解压tar包:
    tar -zxvf jdk-7u79-linux-x64.tar.gz
    将解压后的文件移动到自己设置的文件下,进入jdk的bin目录下执行 ./java -version:


    image.png

    可以正常执行

    修改/etc/profile,添加jdk的环境变量


    image.png

    执行 source /etc/profile使其立即生效,这样就可以在任意地方执行了

    二 配置Tomcat

    1.在apache官网下载Linux版本的tomcat

    地址:https://tomcat.apache.org/download-80.cgi
    apache-tomcat-8.5.24.tar.gz

    2.将该文件上传到客户机

    进行解压,进入bin目录,执行 ./startup.sh (startup.bat是windows环境执行的),再查看当前的端口,看tomcat是否正常运行


    image.png

    3.在虚拟机中打开浏览器 localhost:8080看是否可以正常显示

    4.在windows宿主机上打开浏览器,输入192.168.40.81:8080(当前虚拟机中运行客户机的IP)

    发现无法访问
    这是因为iptables防火墙没有开放8080端口
    解决方法1:
    service iptables stop #关闭防火墙
    chkconfig iptables off #设置防火墙不自动启动
    解决方法2:
    修改/etc/sysconfig/iptables文件

    也可以在文件最上面添加
    允许8080端口通过防火墙
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT
    允许3306端口通过防火墙
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
    允许9904端口通过防火墙
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 9904 -j ACCEPT


    image.png

    三、安装MySQL5.7

    1.查看自己的Linux版本

    image.png

    2.在MySQL的官网上下载相应版本的rpm文件

    地址:https://dev.mysql.com/downloads/repo/yum/

    image.png

    3.将文件上传到虚拟机

    也可以在虚拟机中直接执行命令进行下载
    wget https://repo.mysql.com//mysql57-community-release-el6-11.noarch.rpm

    image.png

    4.查看/etc/yum.repos.d/mysql-community.repo文件

    部分内容如下:
    enabled=1 表示打算安装的版本 选择5.7 gpgcheck=1是校检如果是自己制作镜像不需校检可以设置为0

    [mysql56-community]
    name=MySQL 5.6 Community Server
    baseurl=http://repo.mysql.com/yum/mysql-5.6-community/el/6/$basearch/
    enabled=0
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

    [mysql57-community]
    name=MySQL 5.7 Community Server
    baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/6/$basearch/
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

    5.执行yum install mysql-community-server

    如果安装报错,执行 yum -qa | grep mysql
    出现的列表中CentOS自带的5.1文件不影响,但是如果自己之前安装了别的版本的MySQL则应该清理掉
    yum -re 文件名(比如:xx-el7-xxx) --nodedps

    6.修改root密码

    在/usr/log/mysqld.log 中会生成临时root的密码
    [root@server0 log]# grep 'temporary password' mysqld.log
    2017-12-24T09:44:56.806730Z 1 [Note] A temporary password is generated for root@localhost: b%gARPySr7>?
    注意,这里生成的b%gARPySr7>?就是root的密码,是明文

    执行mysql -u root -p
    [root@server0 log]# mysql -u root -p
    Enter password:
    输入b%gARPySr7>?登陆进MySQL

    修改root密码报错,不符合安全策略
    mysql> set password for root@localhost=password('root') ;
    ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

    解决方法:
    mysql> set global validate_password_policy=0;


    (这里的步骤可以不用执行
    mysql> set global validate_password_length=1;(可以不用执行,即使执行了小于4的值还是会默认设置为4)
    mysql> select @@validate_password_length;
    +----------------------------+
    | @@validate_password_length |
    +----------------------------+
    | 4 |
    +----------------------------+
    1 row in set (0.00 sec) )


    设置root密码
    mysql> set password for root@localhost=password('root');

    相关文章

      网友评论

          本文标题:CentOS下开发环境配置

          本文链接:https://www.haomeiwen.com/subject/chvhgxtx.html