Changes for page Monitor & Remote Access Gateway
Last modified by Kilight Cao on 2025/01/14 10:25
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -144,4 +144,66 @@ 144 144 145 145 After doing above, please download and mail the public keys to Dragino support and wait for our mail for the valid host port. Input the valid host port got from our support and click connect so we can remote access to your gateway. 146 146 147 + 148 +Set Up RSSH Server 149 + 150 + 151 +===== Step 1:Download the SSH service code ===== 152 + 153 +1).git clone [[https:~~/~~/github.com/dragino/rssh-server.git>>url:https://github.com/dragino/rssh-server.git]] rssh-server 154 + 155 +[[~[~[image:https://wiki.dragino.com/images/thumb/d/d0/Git_clone.png/500px-Git_clone.png~|~|height="80" width="500"~]~]>>url:https://wiki.dragino.com/index.php/File:Git_clone.png]] 156 + 157 +git clone rssh-server 158 + 159 +2).cd rssh-server; sudo make ~-~--> to Generate the execute file:rssh_serv 160 + 161 +[[~[~[image:https://wiki.dragino.com/images/thumb/e/e3/Generate_the_execute_file.png/500px-Generate_the_execute_file.png~|~|height="103" width="500"~]~]>>url:https://wiki.dragino.com/index.php/File:Generate_the_execute_file.png]] 162 + 163 +Generate the execute file 164 + 165 +**Debug** : 166 + 167 +{{{ if you git fail. --> sudo: git: command not found. 168 + please install git. --> yum install git -y or apt-get install git -y. 169 +}}} 170 + 171 +{{{ if you make error 127,it lack of gcc. 172 + please install gcc. -->yum install gcc. 173 +}}} 174 + 175 +[[~[~[image:https://wiki.dragino.com/images/d/d7/Lack_of_gcc.png~|~|height="174" width="434"~]~]>>url:https://wiki.dragino.com/index.php/File:Lack_of_gcc.png]] 176 + 177 +lack of gcc 178 + 179 +{{{ if you make a fatal error : sqlite3.h,it lack of sqlite3. 180 + please insatell sqlite3. 181 +}}} 182 + 183 +[[~[~[image:https://wiki.dragino.com/images/thumb/9/93/Lack_of_sqlite3.png/500px-Lack_of_sqlite3.png~|~|height="137" width="500"~]~]>>url:https://wiki.dragino.com/index.php/File:Lack_of_sqlite3.png]] 184 + 185 +lack of sqlite3 186 + 187 +How to install Sqlit3 188 + 189 +{{{ Step1:Download the SQLit3 installation package 190 + sudo wget 191 + Step2:tar the SQLit3 installation package 192 + sudo tar -zxvf sqlite-autoconf-3350300.tar.gz 193 + Step3:Generate the makefile 194 + cd sqlite-autoconf-3350300/;./configure 195 + Step4:Compile makefile 196 + sudo make 197 + Step5:Install makefile 198 + sudo make install 199 + Check: 200 + cd /usr/local/bin;ls -al --> Check to see if there is a file for sqlite3 201 + cd sqlite-autoconf-3350300/;./sqlite3 test.db --> Test whether the sqlite3 was installed successfully 202 + debug: 203 + If you get the imformation that is SQLite header and source version mismatch, when you execute./sqlite3 test.db. 204 + Please execute the command /sbin/ldconfig. 205 + After that execute the command ./sqlite3 test.db again. 206 +}}} 207 + 208 + 147 147