程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> Ubuntu下MySQL及對象裝置設置裝備擺設詳解

Ubuntu下MySQL及對象裝置設置裝備擺設詳解

編輯:MySQL綜合教程

Ubuntu下MySQL及對象裝置設置裝備擺設詳解。本站提示廣大學習愛好者:(Ubuntu下MySQL及對象裝置設置裝備擺設詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是Ubuntu下MySQL及對象裝置設置裝備擺設詳解正文


本文為年夜家分享了

裝置敕令: 

sudo apt-get install mysql-server  mysql-client  mysql-query-browser  mysql-admin 

修正root暗碼: 

mysqladmin -u root password "yourpassword" 

設置裝備擺設: 

留意,在Ubuntu下MySQL缺省是只許可當地拜訪的,假如你要其他機械也可以或許拜訪的話,那末須要轉變/etc/mysql/my.cnf設置裝備擺設文件了!上面我們一步步地來:
默許的MySQL裝置以後根用戶是沒有暗碼的,所以起首用根用戶進入:
$mysql -u root -p
在這裡之所以用-u root是由於我如今是普通用戶(firehare),假如不加-u root的話,mysql會認為是firehare在登錄。留意,我在這裡沒有進入根用戶形式,由於沒需要。普通來講,對mysql中的數據庫停止操作,基本沒需要進入根用戶形式,只要在設置時才有這類能夠。
進入mysql以後,最要緊的就是要設置Mysql中的root用戶暗碼了,不然,Mysql辦事無平安可言了。
mysql> GRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY "123456";
留意,我這兒用的是123456做為root用戶的暗碼,然則該暗碼是不平安的,請年夜家最好應用年夜小寫字母與數字混雜的暗碼,且很多於8位。
如許的話,就設置好了MySQL中的root用戶暗碼了,然後就用root用戶樹立你所須要的數據庫。我這裡就以xoops為例:
mysql>CREATE DATABASE xoops;
mysql>GRANT ALL PRIVILEGES ON xoops.* TO xoops_root@localhost IDENTIFIED BY "654321";
如許就樹立了一個xoops_roots的用戶,它對數據庫xoops有著全體權限。今後就用xoops_root來對xoops數據庫停止治理,而無須要再用root用戶了,而該用戶的權限也只被限制在xoops數據庫中。
假如你想停止長途拜訪或掌握,那末你要做兩件事:
其一:
mysql>GRANT ALL PRIVILEGES ON xoops.* TO xoops_root@"%" IDENTIFIED BY "654321";
許可xoops_root用戶可以從隨意率性機械上登入MySQL。
其二:
$sudo gedit /etc/mysql/my.cnf
>skip-networking => # skip-networking
如許便可以許可其他機械拜訪MySQL了。

以上就是本文的全體內容,願望對年夜家的進修有所贊助,也願望年夜家多多支撐。

>    height: 200px;   
  •     background-color: #000;   
  •     border-radius: 100px;   
  •   
  •     -webkit-animation: 8s dog linear infinite;   
  •     -moz-animation: 8s dog linear infinite;   
  •     animation: 8s dog linear infinite;   
  •   }   
  •   
  •   @-webkit-keyframes dog {   
  •     0% {    
  •       left:27px;   
  •       top: 0px;   
  •     }   
  •     100% {    
  •       left: 399px;   
  •       top: 216px;   
  •     }   
  •   }   
  •   @-moz-keyframes dog {   
  •     0% {    
  •       left:27px;   
  •       top: 0px;   
  •     }   
  •     100% {    
  •       left: 399px;   
  •       top: 216px;   
  •     }   
  •   }   
  •   @keyframes dog {   
  •     0% {    
  •       left:27px;   
  •       top: 0px;   
  •     }   
  •     100% {    
  •       left: 399px;   
  •       top: 216px;   
  •     }   
  •   }  
  • 最好body也設成配景黑,那就更好了~

    等等,看不到星星的天空,缺乏了幸福感。
    正好偷師一下,一個div裡的美隊盾做法,直接用★
    也給個動畫後果,縮小減少~

        
  • .star{   
  •     position: absolute;   
  •   }   
  •   .star::before{   
  •     content: "★";   
  •     display: block;   
  •     position: absolute;   
  •     left: 10px;   
  •     top: 20px;   
  •   
  •     width: auto;   
  •     height: auto;   
  •     color: #fff;   
  •     -webkit-transform:scale(0.5);   
  •     -moz-transform:scale(0.5);   
  •     transform:scale(0.5);   
  •   
  •     -webkit-animation: 1s starlight linear infinite;   
  •     -moz-animation: 1s starlight linear infinite;   
  •     animation: 1s starlight linear infinite;   
  •   }   
  •   .star::after{   
  •     content: "★";   
  •     display: block;   
  •     position: absolute;   
  •     left: 40px;   
  •     top: 120px;   
  •   
  •     width: auto;   
  •     height: auto;   
  •     color: #fff;   
  •     -webkit-transform:scale(0.5);   
  •     -moz-transform:scale(0.5);   
  •     transform:scale(0.5);   
  •   
  •     -webkit-animation: 2s starlight linear infinite;   
  •     -moz-animation: 2s starlight linear infinite;   
  •     animation: 2s starlight linear infinite;   
  •   }   
  •   
  •   @-webkit-keyframes starlight {   
  •     0% {    
  •       -webkit-transform:scale(0.5);   
  •     }   
  •     100% {    
  •       -webkit-transform:scale(0.1);   
  •     }   
  •   }   
  •   @-moz-keyframes starlight {   
  •     0% {    
  •       -moz-transform:scale(0.5);   
  •     }   
  •     100% {    
  •       -moz-transform:scale(0.1);   
  •     }   
  •   }   
  •   @keyframes starlight {   
  •     0% {    
  •       transform:scale(0.5);   
  •     }   
  •     100% {    
  •       transform:scale(0.1);   
  •     }   
  •   }  
  •  後果圖以下:
    2015718171530640.png (600×312)

     後果頁面>>

    終了,嗯,再給月亮加個色彩突變?

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved