rpm -qa | grep mysql //檢查是否安裝了mysql,若是安裝了請刪除 //安裝 yum install mariadb-server mariadb systemctl start mariadb #啓動MariaDB systemctl stop mariadb #中止MariaDB systemctl restart mariadb #重啓MariaDB systemctl enable mariadb #設置開機啓動
查看端口號mysql
netstat -anp | grep 9501
linux
一、關閉firewall:
systemctl stop firewalld.service
systemctl disable firewalld.service
systemctl mask firewalld.service
二、安裝iptables防火牆
yum install iptables-services -ysql
3.啓動設置防火牆tcp
# systemctl enable iptables
# systemctl start iptables
4.查看防火牆狀態spa
systemctl status iptablesrest
5編輯防火牆,增長端口
vi /etc/sysconfig/iptables #編輯防火牆配置文件
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
:wq! #保存退出
3.重啓配置,重啓系統
systemctl restart iptables.service #重啓防火牆使配置生效
systemctl enable iptables.service #設置防火牆開機啓動code
查看文件server
ll name遞歸
ls nameip
刪除文件
rm -rf (rf表明向下遞歸併強制刪除)
移動及重命名文件
mv
查看linux用戶log
last -
tar壓縮
解包:tar zxvf FileName.tar
打包:tar czvf FileName.tar DirName
zip壓縮
解壓:unzip FileName.zip
壓縮:zip -r FileName.zip DirName -r 表示向下遞歸處理目錄
查看文檔
vi 查看或建立
i 插入模式
:wq 保存退出
ZZ 強制退出
/搜索 n下一個
u 撤銷上一步的操做 uu返回打開狀態
Ctrl+r 反撤銷(沒試過)
mkdir 建立目錄
du -h 當前文件大小
-h:以人類可讀的方式顯示
-a:顯示目錄佔用的磁盤空間大小,還要顯示其下目錄和文件佔用磁盤空間的大小 du -ah
-s:顯示目錄佔用的磁盤空間大小,不要顯示其下子目錄和文件佔用的磁盤空間大小 du -sh
-c:顯示幾個目錄或文件佔用的磁盤空間大小,還要統計它們的總和 du -ch
df -h 磁盤使用量查詢
ctrl +c 強制中斷任務 ctrl +z 掛起任務。
bg查看掛起任務 fg 1繼續執行被掛起任務。
CTRL + U - 剪切光標前的內容
CTRL + K - 剪切光標至行末的內容
CTRL + Y - 粘貼
CTRL + E - 移動光標到行末
CTRL + A - 移動光標到行首
ALT + F - 跳向下一個空格
ALT + B - 跳回上一個空格
ALT + Backspace - 刪除前一個單詞
CTRL + W - 剪切光標前一個單詞
Shift + Insert - 向終端內粘貼文本