安裝lz,rz:
yum install lrzsz
安裝mysql
# wget
#rpm -ivh mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server
安裝完畢之後需要重啟一下服務
# service mysqld restart
會輸出:redirecting to /bin/systemctl restart mysqld.service
設定一下密碼:
下次登陸就可以用 mysql -u root -p***
平滑公升級python2.7-python3.6.4 (root使用者)
# wget
# xz -d python-3.6.4.tar.xz
# tar xvf python-3.6.4.tar
2.編譯並安裝
# mkdir /usr/local/python3
# cd python-3.6.4
# sudo ./configure --prefix=/usr/local/python3 --enable-optimizations
# sudo make & make install (過程比較慢)
3.替換python2.7
# cd /usr/bin
# mv python python.old
# ln -s /usr/local/python3/bin/python3.6 /usr/bin/python
因為yum包使用python2*等開發,修該為環境修改python3之後有問題,
解決:修改檔案/usr/bin/yum、/usr/libexec/urlgrabber-ext-down頭中相應python為#!/usr/bin/python2.7
done
pip的安裝不介紹了。
安裝django的時候一定要注意,要用 python -m pip install django命令安裝!!不然django就安裝到了python2.7目錄下了。
依賴檔案生成
pip freeze > requirements.txt
依賴檔案安裝
pip install -r requirement.txt
齊博cms 7 0 漏洞分析
還是很早之前爆出來的漏洞,現在拿出來學習一下,參考阿里巴巴 漏洞發生在 inc common.inc.php頁面中。首先看這個函式 首先使用ini get來獲取php.ini中變數 register globals 的值,而register globals代表的意思是提交的請求是否註冊為全域性變數,...
齊博cmsv7 0後台getshell
前言 下,vg要奪冠。加油 0x01 漏洞分析 此漏洞比較雞肋,需要後台許可權。漏洞原理很簡單,這裡就簡單分析一下。漏洞出現在 inc class.inc.php中的guidefidcache函式裡 導航條快取 function guidefidcache table,filename guide ...
CentOS 7 0,啟用iptables防火牆
centos 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆。1 關閉firewall systemctl stop firewalld.service 停止firewall systemctl disable firewalld.service 禁止firewall開...