yum -y update
如果顯示以下內容說明已經更新完成
replaced:
grub2.x86_64 1:2.02-0.64.el7.centos grub2-tools.x86_64 1:2.02-0.64.el7.centos
complete!
reboot
rpm -qa | gerp mysql
或
yum list installed |
grep mysql
rpm -ivh
yum install -y mysql-server
或
yum install mysql-community-server
systemctl enable mysqld.service
systemctl list-unit-files |
grep mysqld
systemctl start mysqld.service
grep
'temporary password' /var/log/mysqld.log
如果剛安裝,預設密碼為空
mysql -uroot -p
如果密碼為空,不需要輸入,直接回車
mysql>set password = password(
'root'
); //password(
'需要設定的密碼'
);
mysql>grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option; //identified by '設定的密碼'
mysql>flush privileges;
阿里雲ECS伺服器搭建
阿里雲ecs伺服器搭建 有試用資格 點選進入阿里云云產品試用中心,選擇下圖產品,點選試用30天。無試用資格 點選進入ecs主頁,如下圖點選立即購買,約花費0.08元.二 開始搭建 試用的同學,請選擇試用規格和任意映象,然後跳轉到第3步驟 1 選擇基礎配置 購買時,如圖選擇按量付費,選擇cpu和記憶體...
免費體驗阿里雲ECS雲伺服器
大家在第一次接觸ecs伺服器的時候一定一臉懵逼吧,對此阿里雲為大家特地提供了雲服務的一些基礎操作的體驗平台,讓大家對ecs伺服器不再陌生,下面就跟著我的部落格一起學習吧!通過阿里雲提供的免費一小時體驗阿里雲ecs雲伺服器服務,遠端登陸ecs例項,並部署應用。然後,登陸管理控制台,並對這台ecs例項進...
阿里雲ECS伺服器部署django
參考 伺服器安裝的是centos 系統。uwsgi是使用pip安裝的。nginx是使用yum install nginx安裝。python 2.7,mysql 5.5使用 yum安裝。它們之間的邏輯關係如下 the web client the web server the socket uwsgi...