安裝mysql客戶端
yum update
yum install -y mysql
安裝mysql伺服器
yum install -y mysql-server
啟動mysql伺服器
systemctl start mysqld
開機自啟
systemctl enable mysqld
使用者安全配置
mysql_secure_installation
用剛剛設定的root賬戶連線資料庫
mysql -uroot -p
新建資料庫&管理使用者
新建資料庫:create database test;
建立使用者:create user 'test'@'%' identified by 'test123';
賦予使用者test資料庫的管理許可權和任意主機:grant execute,insert,update,select on test.* to 'test'@'%';
注意
centos8使用的firewall,遠端連線需要注意埠是否開啟。
firewall-cmd --zone=public --query-port=3306/tcp
Centos8下ffmpeg的安裝
首先來說說在centos7下通常的安裝步驟 1.公升級yum yum install epel release y yum update y 2.安裝nux dextop yum 源 rpm import rpm uvh 3.安裝ffmpeg yum y install ffmpeg 4.測試 ff...
centos8,下安裝部署Nginx
安裝環境 openssl openssl 是乙個強大的安全套接字層密碼庫,囊括主要的密碼演算法 常用的金鑰和證書封裝管理功能及ssl協議,並提供豐富的應用程式供測試或其它目的使用。nginx不僅支援http協議,還支援https 即在ssl協議上傳輸http 所以需要在linux安裝openssl庫...
centos8網路連線檢測 centos8聯網問題
問題1描述 在vm上安裝centos8後,發現無法聯網。解決 1.若一開始ifconfig沒有顯示網絡卡,則去設定在系統啟動時啟用網絡卡 root localhost cd etc sysconfig network scripts root localhost network scripts ls...