LAMP redis安裝部署

2021-10-07 21:38:53 字數 2711 閱讀 8512

yum源:php公升級

rpm -uvh 

rpm -uvh

常用命令:yum list php* yum list installed | grep php* php --versi

flush privileges;

wget
2、安裝mysql源
yum localinstall mysql57-community-release-el7-8.noarch.rpm -y
3、以上完成後,接下來就是檢測源是否安裝成功
yum repolist enabled | grep "mysql.*-community.*"
備註:可以通過 vim /etc/yum.repos.d/mysql-community.repo

修改這個配置用來yum的時候安裝mysql的版本。5.7的enabled=1,其他度為0,就安裝的是5.7的版本。

yum -y install mysql-community-server    

systemctl start mysqld

systemctl status mysqld

systemctl enable mysqld

systemctl daemon-reload //過載服務

5、mysql5.7安裝時會產生乙個預設的密碼,檢視此密碼的檔案一般存在於/var/log/mysqld.log上
grep 'temporary password' /var/log/mysqld.log         //檢視密碼
實際操作中未發現密碼,更改vim /etc/my.cnf,新增skip-grant-tables 重啟資料庫,mysql登入。

6、更改資料庫登陸密碼
use mysql;

update user set authentication_string=password("123456") where user="root";

flush privileges;

7、公升級資料結構,授權遠端登陸。
mysql_upgrade -uroot -p123456     

mysql -uroot -p123456

grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;

flush privileges;

vim /etc/my.cnf

#skip-grant-tables

yum -y install redis

systemctl start redis

systemctl status redis

systemctl enable redis

ps -ef | grep redis

vim /etc/redis.conf (開啟遠端,設定密碼)

61 #bind 127.0.0.1

80 protected-mode no

481 requirepass 654321 redis密碼

ps -ef | grep redis

kill -9 pid

systemctl restart redis

進入redis: redis-cli -h 127.0.0.1 -p 6379

輸入使用者名稱、密碼:auth 654321 info看資訊

安裝部署redis redis 安裝部署

wget redis 3.2.12.tar.gz 第二步 上傳軟體並解壓 解壓tar xzf redis 3.2.12.tar.gz改名稱 mv redis 3.2.12 redis第三步 安裝依賴軟體 yum y install gcc automake autoconf libtool make...

安裝部署fastdfs

port 22122 服務埠 connect timeout 30 連線超時時間 network timeout 60 tracker server的網路超時,單位為秒。base path jack fastdfs tracker 目錄位址,裡面會建立data 存放儲存伺服器資訊 logs,日誌檔案...

glassfish 安裝部署

1.解壓到 opt unzip glassfish 4.0.zip 2.拷貝mysql驅動到 opt glassfish4 glassfish domains domain1 lib ext 3.啟動 cd opt glassfish4 glassfish bin asadmin start dom...