安裝的版本是mysql5.0.37,伺服器原本的版本是mysql3.23
tar zxvf mysql-5.0.37.tar.gz
./configure --prefix=/real/ugc/mysqlmaster --with-charset=utf8 --with-unix-socket-path=/real/ugc/mysqlmaster.sock --with-tcp-port=7001 --with-extra-charsets=gbk,gb2312,utf8,big5,latin1,latin2,latin5,latin7
--prefix:安裝的目錄
--with-unix-socket-path:安轉的socket的路徑
--with-tcp-port:安裝的mysql的埠
--with-extra-charsets:預設支援的字符集
scripts/mysql_install_db --user=mysql(安裝mysql預設庫)
啟動mysql:bin/mysqld_safe --socket=/tmp/mysqlmaster.sock --port=7001 &
netstat -anp|grep listen 檢視監聽的埠
修改root密碼:/real/ugc/mysqlmaster/bin/mysqladmin --socket=/tmp/mysqlmaster.sock --port=7001 -u root password 'root'
啟動資料庫:bin/mysql -uroot -proot --default-character-set=utf8 --socket=/temp/mysqlmaster.sock
到這裡,安裝基本結束了
windows下mysql安裝失敗的乙個解決案例
access denied for user root localhost using password yes 網上尋找了各種方法,有 原mysql未解除安裝完全的,失敗 有修改密碼的,解決方法如下 f cd f program files mysql mysql server 5.1 bin f...
多個ERP系統連線乙個EWM系統
整合方案一 多個erp系統連線乙個ewm client.two erp clients connected to the same ewm client 第一種整合方式,多個erp系統與乙個ewm系統相連,ewm系統與各系統相連是以邏輯系統為基礎,一些主資料 業務單據都會帶有邏輯系統標識,但也有一些...
乙個容器多個程序,乙個pod多個容器
乙個容器多個程序 在docker的映象編譯指令碼dockerfile中帶起多個程序,如下可以在contivnet.sh中啟動多個程序 from 192.168.1.2 5001 world centos7 ovs 2.6.4 1 copy bin contiv bin copy scripts co...