在海之舟大資料平臺上搭建mysql+php開發平臺
海之舟伺服器作業系統基於國產arm64,3399cpu,分a版,b版,a版內建了大量軟體,開發介面範例。
作業系統是個.img的檔案,在windows7下刷入tf卡,開機即可啟動。啟動後ssh登陸,操作介面如下。
配置檔案設定開機啟動
root@bigdataA:/home/zs# nano /etc/rc.local
…
su - zs -c’/md1/apache-tomcat-8.5.35/bin/startup.sh’
#sleep 5
#su - zs -c’pgxc_ctl -c /home/zs/pgxc_ctl/pgxc_ctl.conf start all’
#/etc/init.d/apache2 start
#/etc/init.d/mysql start
#/etc/init.d/bind9 start
#/etc/init.d/postgresql start
#/etc/init.d/vsftpd start
#/etc/init.d/xinetd start
#/etc/init.d/ntp start
exit 0
把
/etc/init.d/apache2 start
/etc/init.d/mysql start
前的#去掉,mysql,apache2,即開機自動啟動,
root@bigdataA:/home/zs# netstat -an
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
tcp 0 256 192.168.1.125:22 192.168.1.6:49733 ESTABLISHED
tcp6 0 0 :::80 ::? LISTEN
tcp6 0 0 :::22 ::? LISTEN
udp 0 0 192.168.1.125:123 0.0.0.0:*
udp 0 0 127.0.0.1:123 0.0.0.0:*
udp 0 0 0.0.0.0:123 0.0.0.0:*
udp6 0 0 fe80::a8c4:51ff:fe3:123 ::?
udp6 0 0 ::1:123 ::?
udp6 0 0 :::123 ::?
檢視啟動情況,80,3306,為apache.mysql的埠。自動啟動正常。在瀏覽器中輸入:
http://192.168.1.125/a.php
顯示php 正常。
修改/var/www/html/下的檔案即可進行php開發。
以下進入資料庫
root@bigdataA:/home/zs# mysql -v
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 39
Server version: 10.1.41-MariaDB-0+deb9u1 Debian 9.9
Copyright © 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Reading history-file /root/.mysql_history
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.
切換資料庫
MariaDB [(none)]> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
MariaDB [mysql]>
MariaDB [mysql]> SHOW DATABASES;--------------
SHOW DATABASES
±-------------------+
| Database |
±-------------------+
| information_schema |
| mysql |
±-------------------+
2 rows in set (0.00 sec)
MariaDB [mysql]>
MariaDB [mysql]> CREATE DATABASE example;
CREATE DATABASE example
Query OK, 1 row affected (0.00 sec)
MariaDB [mysql]> SHOW DATABASES;
SHOW DATABASES
±-------------------+
| Database |
±-------------------+
| example |
| information_schema |
| mysql |
±-------------------+
3 rows in set (0.00 sec)
MariaDB [mysql]> use example;
MariaDB [example]>CREATE TABLE student (id int,name varchar(20));
CREATE TABLE student (id int,name varchar(20))
Query OK, 0 rows affected (0.11 sec)
…
常用命令:
#pwd
/home/zs
root@bigdataA:/home/zs# cd /root
root@bigdataA:~# ls
檢視網路配置
root@bigdataA:~# ifconfig -a
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.125 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::a8c4:51ff:fe3e:aeda prefixlen 64 scopeid 0x20
ether aa:c4:51:3e:ae:da txqueuelen 1000 (Ethernet)
RX packets 4304 bytes 282205 (275.5 KiB)
RX errors 0 dropped 3683 overruns 0 frame 0
TX packets 335 bytes 35961 (35.1 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 24
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10
loop txqueuelen 1 (Local Loopback)
RX packets 8 bytes 490 (490.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 8 bytes 490 (490.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether 28:ed:e0:62:54:0c txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
root@bigdataA:~#
可看到預置的軟體,啟用即可。
root@bigdataA:/home/zs# nano /etc/rc.local
…
su - zs -c’/md1/apache-tomcat-8.5.35/bin/startup.sh’
#sleep 5
#su - zs -c’pgxc_ctl -c /home/zs/pgxc_ctl/pgxc_ctl.conf start all’
#/etc/init.d/apache2 start
#/etc/init.d/mysql start
#/etc/init.d/bind9 start
#/etc/init.d/postgresql start
#/etc/init.d/vsftpd start
#/etc/init.d/xinetd start
#/etc/init.d/ntp start
exit 0
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23102655/viewspace-2659319/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 智慧警務大資料平臺開發,資料視覺化分析平臺搭建大資料視覺化
- 大資料平臺CDH搭建大資料
- 大資料平臺搭建(1)大資料
- 怎樣搭建大資料平臺大資料
- 大資料平臺是什麼?有哪些功能?如何搭建大資料平臺?大資料
- 大資料治理——搭建大資料探索平臺大資料
- 大資料平臺開發公司有哪些?大資料
- 國產處理器伺服器上搭建mysql(MariaDB)+jsp(java)開發平臺,基於海之舟1.0A作業系統伺服器MySqlJSJava作業系統
- 大資料平臺Hadoop叢集搭建大資料Hadoop
- 大資料分析平臺搭建方式有哪些大資料
- 資料平臺、大資料平臺、資料中臺……還分的清不?大資料
- 智慧警務-情報研判系統開發-搭建大資料分析平臺大資料
- 王雨舟:知乎大資料平臺架構和實踐優化大資料架構優化
- Caravel資料勘探平臺搭建
- 資料分析平臺搭建指南
- 企業為何需要搭建大資料平臺大資料
- 大資料分析平臺的搭建方式有哪些大資料
- 從0到1搭建DeltaLake大資料平臺大資料
- Hadoop大資料平臺之HBase部署Hadoop大資料
- Hadoop大資料平臺之Kafka部署Hadoop大資料Kafka
- NFT交易平臺定製開發|NFT交易平臺專案搭建
- 如何搭建遊戲資料分析平臺遊戲
- 綠茵面家平臺開發(開發平臺)
- Hi3511平臺開發環境搭建資料開發環境
- 什麼情況下需要搭建大資料平臺大資料
- 基於Apache Ambari搭建Hadoop大資料平臺ApacheHadoop大資料
- TDS:標籤平臺+API平臺+資料共享平臺,助力資料運營平臺建設API
- 在零程式碼開發平臺上如何開發應用程式
- 大資料開發需要學習什麼?大資料平臺是什麼?大資料
- 使用開源軟體快速搭建資料分析平臺
- 七牛雲:基於Go開發的大資料平臺Go大資料
- 22個大資料開發處理框架平臺和工具大資料框架
- 智慧公安大資料合成作戰平臺搭建人臉識別系統開發大資料
- 公安情報大資料分析研判預警系統開發,合成作戰平臺搭建大資料
- EXCEEDDATA — 工程大資料分析平臺大資料
- 大資料風控平臺需求大資料
- 智慧公安情報研判大資料系統分析平臺搭建大資料
- CDH5大資料實驗平臺搭建筆記H5大資料筆記