個人覺得阿里雲自帶的控制台命令列真心不好用,還是習慣mac自帶的終端
用終端連線阿里雲伺服器方法:
#ssh yourname@yourserverip //其中yourname指伺服器登入使用者名稱 yourserverip指伺服器位址
回車,輸入伺服器密碼,不出意外已經連上了你的伺服器,接下來為所欲為吧。
apache安裝
yum install httpd
啟動
systemctl start httpd.service #啟動
systemctl stop httpd.service #停止
systemctl restart httpd.service #重啟
第
二、設定開機啟動/關閉
systemctl enable httpd.service #開機啟動
systemctl disable httpd.service #開機不啟動
第
三、檢查httpd狀態
systemctl status httpd.service
關閉防火牆
關閉:systemctl stop firewalld.service
檢視狀態:systemctl status firewalld.service
php安裝
yum -y install php
php各項服務安裝:
yum -y install php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel php-mysql
mariadb資料庫操作命令
安裝:yum -y install mariadb-server mariadb-client
啟動:systemctl start mariadb.service
停止:systemctl stop mariadb.service
檢視狀態:systemctl status mariadb.service
開機啟動:systemctl enable mariadb.service
重啟:systemctl restart mariadb.service
經過一番掙扎,決定使用xampp,但是也有問題,在剛更新完伺服器檔案之後,會有快取,開啟頁面會是之前的,所以需要重啟一下服務:
/opt/lampp/lampp restart
Mac 連線阿里雲伺服器
1.通過命令列連線 server 並設定 1.1 連線 server ssh root hctec.top ssh 遠端連線工具 root 遠端伺服器使用者名稱,此處我用的是 root 使用者 hctec.top 是伺服器的網域名稱,當然你可以直接用 ip 1.2 無需密碼直接連線到 server ...
mac 遠端連線 雲伺服器
首先,在雲端先判斷一下雲端伺服器是否安裝了 ssh伺服器 openssh server 在命令列輸入 ssh localhost 如果已經安裝過的話,會出現下面結果 如果沒有安裝過的話,則會出現下面的結果 ssh connect to host localhost port 22 connectio...
遠端連線伺服器mysql 阿里雲
1.首先檢視伺服器安全組中3306埠是否開啟 2.然後在伺服器中的mysql中,授權任何ip可以遠端登入mysql grant all on to root identified by admin flush privileges root是使用者名稱,是主機名或ip位址,這裡的 代表任意主機或ip...