5 linux下檢視memcache是否正常

2021-07-02 06:46:27 字數 2479 閱讀 9942

在xshell中輸入ps -ef | grep mem,顯示結果如下,說明memcache已經啟動。

檢視apache

是否安裝成功

在瀏覽器中輸入伺服器的

ip位址

,如出現如圖的所示的介面說明

apache

安裝成功。

檢視memcache

是否執行正常

在瀏覽器的輸入位址

phpinfo.php

,並查詢

memcache

是否存在,並且顯示正常。如下圖所示。

在定位系統正常執行後首先在本機檢視位置資訊,主要通過telnet來檢視。

(1).    安裝telnet。

[root@localhost /]# yum install telnet

(2).  安裝完成後輸入telnet 127.0.0.1 11211連線到memcached伺服器

[root@localhost /]# telnet 127.0.0.1 11211

(3).    訪問位置結果

通過get命令獲得key對應的值:

get 00258d00003a // 該值為對應的使用者id

出現如圖所示的結果,說明訪問成功,定位結果存放到memcache正常,輸入quit命令退出。

通過firefox瀏覽器訪問memcache,需要安裝外掛程式poster。

安裝poster

(1).    搜尋poster外掛程式,然後安裝即可

(2).    啟動poster工具

(3).    開啟後如下圖

說明:1 定位系統所在伺服器的url:

2 訪問命令

3 傳送post請求

(4).    返回結果

是2.6

版本的linux 

核心中提供的

強制訪問控制

(mac

)系統。

1.     

檢視selinux

臨時關閉

selinux

(不用重啟機器): 設定

selinux

成為permissive模式

[root@localhost real_time_system]#

setenforce 0

3.        修改配置檔案需要重啟機器: 修改

/etc/selinux/config檔案

將selinux=enforcing

改為selinux=permissive

當一切配置正常,通過

telnet

能夠獲得位置資訊,但用外網訪問的定位結果時獲取失敗,應該是

服務沒有啟動,需要配置

服務自啟動。

5 Linux時間程式設計

include time t time time t calptr 返回距計算機元年的秒數 define time t long include struct tm gmtime const time t calptr 獲取世界標準時間utc struct tm include struct tm ...

5Linux目錄處理指令

目錄處理命令 mkdir 建立新目錄make directories 語法 mkdir p x p 遞迴建立 mkdir tmp xiaodianying 在根目錄下的tmp資料夾內建立乙個xiaodianying的資料夾 mkdir p tmp japan boduo tmp本來是不存在的,一下子...

實驗5 linux網路程式設計

完成基於tcp的客戶端和伺服器程式編寫,要求伺服器採用迴圈方式處理客戶端的資料。server.c include include include include include include include include define server port 5012 define serv i...