小鳥云服務(wù)器niaoyun實(shí)例創(chuàng)建好之后,您可以使用以下任意一種方式登錄服務(wù)器:
成都創(chuàng)新互聯(lián)公司是專業(yè)的龍文網(wǎng)站建設(shè)公司,龍文接單;提供做網(wǎng)站、網(wǎng)站設(shè)計(jì),網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行龍文網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
遠(yuǎn)程桌面連接(MicrosoftTerminalServicesClient,MSTSC):采用這種方式登錄,請(qǐng)確保實(shí)例能訪問公網(wǎng)。如果在創(chuàng)建實(shí)例時(shí)沒有購買帶寬,則不能使用遠(yuǎn)程桌面連接。
管理終端VNC:無論您在創(chuàng)建實(shí)例時(shí)是否購買了帶寬,只要您本地有網(wǎng)頁瀏覽器,都可以通過管理控制臺(tái)的管理終端登錄實(shí)例。
使用遠(yuǎn)程桌面連接(MSTSC)登錄實(shí)例
打開開始菜單遠(yuǎn)程桌面連接,或在開始菜單搜索中輸入mstsc。也可以使用快捷鍵Win+R來啟動(dòng)運(yùn)行窗口,輸入mstsc后回車啟動(dòng)遠(yuǎn)程桌面連接。
在遠(yuǎn)程桌面連接對(duì)話框中,輸入實(shí)例的公網(wǎng)IP地址。單擊顯示選項(xiàng)。
輸入用戶名,如小鳥云默認(rèn)為niaoyun。單擊允許我保存憑據(jù),然后單擊連接。這樣以后登錄就不需要手動(dòng)輸入密碼了。
可以搭建網(wǎng)站,云服務(wù)器是可以理解為一個(gè)主機(jī),只不過它位于互聯(lián)網(wǎng)中,就是聯(lián)網(wǎng)就能訪問它的IP地址,能ping通它。
在阿里云上買的云服務(wù)器,其實(shí)就相當(dāng)于你自己買了一臺(tái)服務(wù)器,放在阿里云的機(jī)房里,由阿里云進(jìn)行托管一樣,機(jī)器日常的運(yùn)維你不用考慮,只需要使用即可。
你遠(yuǎn)程連接到這臺(tái)服務(wù)器,可以在這臺(tái)服務(wù)器上部署你自己的網(wǎng)站等系統(tǒng),也可以安裝其它軟件,就像你使用一臺(tái)真正的電腦一樣,而且如果你感覺服務(wù)器的性能不足,可以隨時(shí)進(jìn)行升級(jí)擴(kuò)容。
擴(kuò)展資料
云服務(wù)器優(yōu)勢(shì):云計(jì)算服務(wù)器主要面向中小企業(yè)用戶與高端用戶提供基于互聯(lián)網(wǎng)的基礎(chǔ)設(shè)施服務(wù),這一用戶群體龐大,且對(duì)互聯(lián)網(wǎng)主機(jī)應(yīng)用的需求日益增加。該用戶群體具備如下特征:業(yè)務(wù)以主機(jī)租用與虛擬專用服務(wù)器為主,部分采用托管服務(wù),且規(guī)模較大。
注重短期投資回報(bào)率,對(duì)產(chǎn)品的性價(jià)比要求較高;個(gè)性化需求強(qiáng),傾向于全價(jià)值鏈、傻瓜型產(chǎn)品 。用戶在采用傳統(tǒng)的服務(wù)器時(shí),由于成本、運(yùn)營商選擇等諸多因素,不得不面對(duì)各種棘手的問題,而彈性的云計(jì)算服務(wù)器的推出,則有效的解決了這一問題。
使用阿里云Ubuntu 12.0.4 64位操作系統(tǒng)做git服務(wù)器。
首先git服務(wù)器有兩種訪問方式可以選擇:http方式和ssh的方式,http方式更容易使用。
1、http方式的git服務(wù)器搭建以及使用git命令行訪問:
On the Server
1) Install Ubuntu Server, this is the base of our git server obviously
2) Now we need to install a couple of packages, these being ‘git-core’ and ‘a(chǎn)pache2′, we do this like so:-
apt-get update
apt-get install apache2 git-core
3) Now we need to create a new folder for your new repository and set some inital permissons, we do this like so:-
cd /var/www
mkdir test-repo.git
cd test-repo.git
git --bare init
git update-server-info
chown -R www-data.www-data .
4) We now need to enable WebDAV on Apache2 of which we will use to serve the repository:-
a2enmod dav_fs
5) We now need to configure the access restrictions to our repository by creating the following file:-
/etc/apache2/conf.d/git.conf
Then fill it in with the following content:-
Location /test-repo.git
DAV on
AuthType Basic
AuthName "Git"
AuthUserFile /etc/apache2/passwd.git
Require valid-user
/Location
Then save and close the file, lets move on to the next bit..
6) Next we need to create a user account of which you will need to use to browse of commit to the repository..
htpasswd -c /etc/apache2/passwd.git user
You could then be prompted to enter the password for the user too and confirm it!
7) Ok that’s it for the server side configuration… we just need to restart Apache2 like so and then we should be ready to move on to the client side stuff!
/etc/init.d/apache2 restart
…you can now move on to the client side stuff!
On the client side
Ok so now we need to create a local (on your desktop machine) repository and then we’ll initiate the new remote repository… So, if your using Linux/MacOSX bring up the terminal and type the following commands:-
mkdir ~/Desktop/test-project
cd ~/Desktop/test-project
git init
git remote add origin ;user@server name or IP address/test-project.git
touch README
git add .
git commit -a -m “Initial import”
git push origin master
Done! – Your intiial file named ‘README’ which currently is just blank has now been committed and you’ve pushed your code to your new git server which has now completed the Git reposity creation process, now in future you can ‘clone’ your resposity like so:-
git clone user@server name or IP address/test-project.git
注意上面連接;user@server name or IP address/test-project.git中的user就是你htpasswd -c /etc/apache2/passwd.git user輸入的用戶名。
另外新建倉庫的時(shí)候,只需執(zhí)行:
cd /var/www
mkdir 項(xiàng)目名
cd 項(xiàng)目名
git --bare init
git update-server-info
chown -R www-data.www-data .
然后在/etc/apache2/conf.d/git.conf中對(duì)應(yīng)添加上面類似段即可。
其中:
AuthUserFile 密碼文件名
后面的文件就是你指定的密碼文件,你可以
htpasswd -c 密碼文件名 user
對(duì)應(yīng)指定該項(xiàng)目的用戶名和密碼即可。添加用戶是不要-c參數(shù):
htpasswd 密碼文件名 user