Centos7開發環境配置(一)

1、準備
SecureCRT工具安裝到本地
http://www.jb51.net/softjc/55...
https://jingyan.baidu.com/art...html

rm -rf + 目錄/文件名 : 完全刪除文件夾
2、JDK 和 Tomcat
一、jdk環境配置java

我安裝在虛擬機的CentOS上,jdk壓縮包放在了/bin/root/ 裏面
tar –xvf xxx.tar.gz –C /usr/local/java   解壓在了/usr/local/java/ 裏頭

vim /etc/profile 
按一下I鍵,末尾添加
**unset i
unset -f pathmunge
        #set java environment
        JAVA_HOME=/usr/local/java/jdk1.7.0_80
        CLASSPATH=.:$JAVA_HOME/lib.tools.jar
        PATH=$JAVA_HOME/bin:$PATH
        export JAVA_HOME CLASSPATH PATH**
按一下ESC鍵,:wq  退出編輯

從新加載配置文件:
source /etc/profile

二、MySQLnode

查看有沒有自帶mysql
    rpm -qa | grep -i mysql
卸載  
    rpm -e --nodeps mysql-xxx
建立文件夾
    cd /usr/local
    mkdir mysql
用遠程文件上傳的軟件鏈接CentOS的ip,這裏使用的軟件爲FileZilla
上傳到root下面的文件是在cd ~ 目錄下,能夠進入該目錄,ll 檢測

解壓    
    tar -xvf MySQL-5.6.25-1.el6.x86_64.rpm-bundle.tar -C /usr/local/mysql
進入目錄
    cd /usr/local/mysql
安裝
    rpm -ivh xxx

警告
warning: mysql-community-common-5.7.21-1.el7.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
Preparing... ################################# [100%]
Updating / installing...
1:mysql-community-common-5.7.21-1.e################################# [100%]
解決:rpm --import /etc/pki/rpm-gpg/RPM*
rpm -ivh MySQL-server-5.6.27-1.el6.x86_64.rpm –nosignaturemysql

安裝成功截圖linux

clipboard.png

啓動mysql的服務
    service mysql start

安裝最新版5.7時啓動出現錯誤nginx

clipboard.png

未解決c++

進入    /root/.mysql_secret查看密碼,複製一下用來首次登陸
    cd /root
    ls -a
    vim .mysql_secret
登陸
    msyql –u root –p
    [root@localhost ~]# mysql  -u root -p

bash: mysql: command not found...sql

輸入密碼登陸後修改密碼
    set password = password('123456');
    exit
加入到系統服務:
    chkconfig --add mysql
自動啓動:
    chkconfig mysql on
登陸MySQL,開啓遠程服務
    grant all privileges on *.* to 'root' @'%' identified by '123456';
    flush privileges;
CentOS7開放3306端口訪問(注意7和6防火牆不同)

其餘:systemctl stop firewalld.service #中止firewall數據庫

systemctl disable firewalld.service        #禁止firewall開機啓動

三、Tomactapache

用遠程文件上傳的軟件鏈接CentOS上傳文件,這裏使用的軟件爲FileZilla,上傳到root下面的文件是在cd ~ 下
建立文件夾
    cd /usr/local
    mkdir tomcat
解壓
    tar –xvf xxx.tar.gz –C /usr/local/tomcat
放開8080端口
    vim /etc/sysconfig/iptables
        按O加入:
        -A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT
        按ESC,:wq!
        保存後
    重啓防火牆
        systemctl restart iptables.service
    開機啓動防火牆
        systemctl enable iptables.service

進入tomcat安裝目錄啓動服務器sh ./startup.sh  關閉 sh ./shutdown.sh
    cd /usr/local/tomcat/
    ll
        drwxr-xr-x. 9 root root 4096 2月   8 16:33 apache-tomcat-7.0.84
    cd apache-tomcat-7.0.84
    cd bin
    sh ./startup.sh

四、MySQL數據庫還原到linux

上傳sql文件到到/boot/下,
    經過遠程鏈接建立數據庫market
    create database market;
在linux下登陸MySQL還原數據庫
    use market;
    source /boot/market.sql

五、個人mysql5.6 的my.cnf配置?
[root@VM_0_4_centos mysql]# find / -name my-default.cnf
/usr/share/doc/MySQL-server-5.6.25/my-default.cnf
/usr/share/mysql/my-default.cnf
[root@VM_0_4_centos mysql]# cd /usr/share/mysql
[root@VM_0_4_centos mysql]# cp my-default.cnf /etc/my.cnf
vim /etc/my.cnf
登陸mysql

service mysql restart
mysql -uroot -p123456
show databases;

clipboard.png

quit

查看系統中是否有rpm方式安裝的mysql
rpm -qa | grep -i mysql

卸載mysql,以安裝mysql的逆序進行卸載

清空與mysql相關的全部目錄及文件,可使用命令find / -name mysql 進行查找
rm -rf /usr/share/mysql
rm -rf /usr/my.cnf

六、Nginx安裝

(1)依賴
yum -y install gcc gcc-c++ autoconf automake make

yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel

(2)解壓安裝包到 /usr/local/ngnix
(3)進入到解壓目錄下 安裝

cd /usr/local/nginx

cd nginx-1.12.2/
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
make && make install
(4)啓動
cd /usr/local/nginx/sbin
./nginx

遠程訪問服務器ip便可看到,前提是防火牆開飯了80端口

(5)查看進程
[root@VM_0_4_centos conf]# ps -ef | grep nginx
root 17620 1 0 22:41 ? 00:00:00 nginx: master process .//nginx
nobody 17621 17620 0 22:41 ? 00:00:00 nginx: worker process
root 18265 14765 0 22:56 pts/0 00:00:00 grep --color=auto nginx
(6)配置文件位置
在安裝路徑下的conf下的nginx.conf
(7)從新加載配置文件
cd /usr/local/nginx/sbin

./nginx –s reload

(8)查看進程

ps -ef | grep nginx
殺進程
kill -9 進程號

(9)配置服務
 在系統服務目錄裏建立nginx.service文件
cd /lib/systemd/system
touch nginx.service
vi /lib/systemd/system/nginx.service
 添加內容以下
[Unit]
Description=nginx
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target
 讓systemd加載
systemctl daemon-reload
 服務命令
 1設置開機啓動

systemctl enable nginx.service

 2其餘命令
 啓動nginx服務

systemctl start nginx.service 

 設置開機自啓動

systemctl enable nginx.service

 中止開機自啓動

systemctl disable nginx.service

 查看服務當前狀態

systemctl status nginx.service

 從新啓動服務

systemctl restart nginx.service 

 查看全部已啓動的服務

systemctl list-units --type=service

七、CentOS7防火牆
CentOS7使用firewalld打開關閉防火牆與端口

一、firewalld的基本使用
啓動: systemctl start firewalld
查看狀態: systemctl status firewalld
禁用: systemctl disable firewalld
禁用: systemctl stop firewalld

2.systemctl是CentOS7的服務管理工具中主要的工具,它融合以前service和chkconfig的功能於一體。
啓動一個服務:systemctl start firewalld.service
關閉一個服務:systemctl stop firewalld.service
重啓一個服務:systemctl restart firewalld.service
顯示一個服務的狀態:systemctl status firewalld.service
在開機時啓用一個服務:systemctl enable firewalld.service
在開機時禁用一個服務:systemctl disable firewalld.service
查看服務是否開機啓動:systemctl is-enabled firewalld.service
查看已啓動的服務列表:systemctl list-unit-files|grep enabled
查看啓動失敗的服務列表:systemctl --failed

3.配置firewalld-cmd

查看版本: firewall-cmd --version
查看幫助: firewall-cmd --help
顯示狀態: firewall-cmd --state
查看全部打開的端口: firewall-cmd --zone=public --list-ports
更新防火牆規則: firewall-cmd --reload
查看區域信息: firewall-cmd --get-active-zones
查看指定接口所屬區域: firewall-cmd --get-zone-of-interface=eth0
拒絕全部包:firewall-cmd --panic-on
取消拒絕狀態: firewall-cmd --panic-off
查看是否拒絕: firewall-cmd --query-panic

那怎麼開啓一個端口呢添加firewall-cmd --zone=public --add-port=80/tcp --permanent (--permanent永久生效,沒有此參數重啓後失效)從新載入firewall-cmd --reload查看firewall-cmd --zone=public --query-port=80/tcp刪除firewall-cmd --zone=public --remove-port=1501/tcp --permanent

相關文章
相關標籤/搜索