国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Centos7開發(fā)環(huán)境配置(一)

RichardXG / 2216人閱讀

摘要:一準(zhǔn)備工具安裝到本地目錄文件名徹底刪除文件夾二和環(huán)境配置我安裝在虛擬機的上,壓縮包放在了里面解壓在了里頭按一下鍵,末尾添加按一下鍵,退出編輯重新加載配置文件查看有沒有自帶卸載創(chuàng)建文件夾用遠(yuǎn)程文件上傳的軟件連接的,這里使用的軟

一、準(zhǔn)備
SecureCRT工具安裝到本地
http://www.jb51.net/softjc/55...
https://jingyan.baidu.com/art...

rm -rf + 目錄/文件名 : 徹底刪除文件夾
二、JDK 和 Tomcat
1、jdk環(huán)境配置

我安裝在虛擬機的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

2、MySQL

查看有沒有自帶mysql
    rpm -qa | grep -i mysql
卸載  
    rpm -e --nodeps mysql-xxx
創(chuàng)建文件夾
    cd /usr/local
    mkdir mysql
用遠(yuǎn)程文件上傳的軟件連接CentOS的ip,這里使用的軟件為FileZilla
上傳到root下面的文件是在cd ~ 目錄下,可以進(jìn)入該目錄,ll 檢測

解壓    
    tar -xvf MySQL-5.6.25-1.el6.x86_64.rpm-bundle.tar -C /usr/local/mysql
進(jìn)入目錄
    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 –nosignature

安裝成功截圖

 
啟動mysql的服務(wù)
    service mysql start

安裝最新版5.7時啟動出現(xiàn)錯誤

未解決

進(jìn)入    /root/.mysql_secret查看密碼,復(fù)制一下用來首次登錄
    cd /root
    ls -a
    vim .mysql_secret
登錄
    msyql –u root –p
    [root@localhost ~]# mysql  -u root -p

bash: mysql: command not found...

輸入密碼登錄后修改密碼
    set password = password("123456");
    exit
加入到系統(tǒng)服務(wù):
    chkconfig --add mysql
自動啟動:
    chkconfig mysql on
登錄MySQL,開啟遠(yuǎn)程服務(wù)
    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開機啟動

3、Tomact

用遠(yuǎn)程文件上傳的軟件連接CentOS上傳文件,這里使用的軟件為FileZilla,上傳到root下面的文件是在cd ~ 下
創(chuàng)建文件夾
    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

進(jìn)入tomcat安裝目錄啟動服務(wù)器sh ./startup.sh  關(guān)閉 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

4、MySQL數(shù)據(jù)庫還原到linux

上傳sql文件到到/boot/下,
    通過遠(yuǎn)程連接創(chuàng)建數(shù)據(jù)庫market
    create database market;
在linux下登錄MySQL還原數(shù)據(jù)庫
    use market;
    source /boot/market.sql

5、我的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;
 

quit

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

卸載mysql,以安裝mysql的逆序進(jìn)行卸載

清空與mysql相關(guān)的所有目錄及文件,可以使用命令find / -name mysql 進(jìn)行查找
rm -rf /usr/share/mysql
rm -rf /usr/my.cnf

6、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)進(jìn)入到解壓目錄下 安裝

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

遠(yuǎn)程訪問服務(wù)器ip即可看到,前提是防火墻開飯了80端口

(5)查看進(jìn)程
[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)查看進(jìn)程

ps -ef | grep nginx
殺進(jìn)程
kill -9 進(jìn)程號

(9)配置服務(wù)
? 在系統(tǒng)服務(wù)目錄里創(chuàng)建nginx.service文件
cd /lib/systemd/system
touch nginx.service
vi /lib/systemd/system/nginx.service
? 添加內(nèi)容如下
[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
? 服務(wù)命令
? 1設(shè)置開機啟動

systemctl enable nginx.service

? 2其他命令
? 啟動nginx服務(wù)

systemctl start nginx.service 

? 設(shè)置開機自啟動

systemctl enable nginx.service

? 停止開機自啟動

systemctl disable nginx.service

? 查看服務(wù)當(dāng)前狀態(tài)

systemctl status nginx.service

? 重新啟動服務(wù)

systemctl restart nginx.service 

? 查看所有已啟動的服務(wù)

systemctl list-units --type=service

7、CentOS7防火墻
CentOS7使用firewalld打開關(guān)閉防火墻與端口

1、firewalld的基本使用
啟動: systemctl start firewalld
查看狀態(tài): systemctl status firewalld
禁用: systemctl disable firewalld
禁用: systemctl stop firewalld

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

3.配置firewalld-cmd

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

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

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/68877.html

相關(guān)文章

  • CentOS7配置Web開發(fā)環(huán)境

    摘要:概述目前我們的自研產(chǎn)品基本是基于重構(gòu)技術(shù)進(jìn)行開發(fā)的頁面,再包裝一層的殼。配置語言環(huán)境在上,我們選擇通過包安裝,這樣會比較方便。配置應(yīng)用服務(wù)器環(huán)境比較方便,不需要安裝,下載好壓縮包后,解壓即可用,只再需配置下環(huán)境變量。 概述 目前我們的自研產(chǎn)品基本是基于Web重構(gòu)技術(shù)進(jìn)行開發(fā)的Web頁面,再包裝一層APP的殼。這樣的APP,他運行所需的環(huán)境本質(zhì)上就是一個Web應(yīng)用運行所需的而環(huán)境。 而一...

    zebrayoung 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<