Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
google-cloud-sdk /
bin /
bootstrapping /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
.default_components
2
B
-rw-r--r--
1980-01-01 08:00
__init__.py
0
B
-rw-r--r--
1980-01-01 08:00
bootstrapping.py
11.3
KB
-rw-r--r--
1980-01-01 08:00
bq.py
5.25
KB
-rwxr-xr-x
1980-01-01 08:00
gsutil.py
6.75
KB
-rwxr-xr-x
1980-01-01 08:00
install.py
11.75
KB
-rwxr-xr-x
1980-01-01 08:00
java_dev_appserver.py
1.44
KB
-rw-r--r--
1980-01-01 08:00
setup.py
2.09
KB
-rw-r--r--
1980-01-01 08:00
Save
Rename
# Copyright 2017 Google Inc. All Rights Reserved. # """A convenience wrapper for starting dev_appserver for appengine for Java.""" from __future__ import absolute_import from __future__ import unicode_literals import os import bootstrapping from googlecloudsdk.command_lib.util import java from googlecloudsdk.core.updater import update_manager # Path to the jar's directory relative to the SDK root _JAR_DIR = os.path.join('platform', 'google_appengine', 'google', 'appengine', 'tools', 'java', 'lib') # Filename of the jar _JAR_NAME = 'appengine-tools-api.jar' # Flags, (enable assertions) _FLAGS = ['-ea'] # Name of the main class _CLASSNAME = 'com.google.appengine.tools.KickStart' # Additional arguments, comes before sys.argv. # The KickStart main class accepts this classname as its first arg _ARGS = [ 'com.google.appengine.tools.development.DevAppServerMain', '--promote_yaml' ] def main(): """Launches the Java dev_appserver 1.""" update_manager.UpdateManager.EnsureInstalledAndRestart( ['app-engine-java'], command=__file__) java_bin = java.RequireJavaInstalled('Java local development server') bootstrapping.ExecuteJarTool( java_bin, _JAR_DIR, _JAR_NAME, _CLASSNAME, _FLAGS, *_ARGS) if __name__ == '__main__': bootstrapping.DisallowIncompatiblePythonVersions() bootstrapping.CommandStart('dev_appserver_java', component_id='core') bootstrapping.CheckUpdates('dev_appserver_java') main()