ubuntu install jira-8.13.7 and confluence-7.4.8
ubuntu install jira-8.13.7 and confluence-7.4.8
参考 https://www.cnblogs.com/fireblackman/p/15692363.html
参考 https://www.cnblogs.com/fireblackman/p/15933344.html
参考 https://www.cnblogs.com/pomelo688/p/14118112.html
配置 http://127.0.0.1:8080/secure/admin/ViewApplicationProperties.jspa
配置 http://127.0.0.1:8090/admin/viewgeneralconfig.action
1. 准备需要部署的安装文件
$ tree atlassian
atlassian
├── atlassian-confluence-7.4.8-x64.bin
├── atlassian-jira-software-8.13.7-x64.bin
├── Install.sh
├── mysql-connector-java-8.0.22.jar
└── pkg
└── atlassian-agent.jar
1 directory, 5 files
$
2. 安装 mysql 和 jdk8
$ sudo aptitude install mysql-server libmysqlclient-dev openjdk-8-jdk $ $ sudo cat /etc/mysql/debian.cnf # Automatically generated for Debian scripts. DO NOT TOUCH! [client] host = localhost user = debian-sys-maint password = RrlyhZ4cpElc2sft socket = /var/run/mysqld/mysqld.sock [mysql_upgrade] host = localhost user = debian-sys-maint password = RrlyhZ4cpElc2sft socket = /var/run/mysqld/mysqld.sock $ $ mysql -udebian-sys-maint -pRrlyhZ4cpElc2sft mysql> exit $ $ sudo mysql_secure_installation Securing the MySQL server deployment. Connecting to MySQL using a blank password. VALIDATE PASSWORD PLUGIN can be used to test passwords and improve security. It checks the strength of password and allows the users to set only those passwords which are secure enough. Would you like to setup VALIDATE PASSWORD plugin? Press y|Y for Yes, any other key for No: n Please set the password for root here. New password: mypass Re-enter new password: mypass By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? (Press y|Y for Yes, any other key for No) : y Success. Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y Success. By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y - Dropping test database... Success. - Removing privileges on test database... Success. Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y Success. All done! $ $ sudo cat /etc/mysql/mysql.conf.d/mysqld.cnf [sudo] password for ditel: # # The MySQL database server configuration file. # # You can copy this to one of: # - "/etc/mysql/my.cnf" to set global options, # - "~/.my.cnf" to set user-specific options. # # One can use all long options that the program supports. # Run program with --help to get a list of available options and with # --print-defaults to see which it would actually understand and use. # # For explanations see # http://dev.mysql.com/doc/mysql/en/server-system-variables.html # This will be passed to all mysql clients # It has been reported that passwords should be enclosed with ticks/quotes # escpecially if they contain "#" chars... # Remember to edit /etc/mysql/debian.cnf when changing the socket location. # Here is entries for some specific programs # The following values assume you have at least 32M ram [mysqld_safe] socket = /var/run/mysqld/mysqld.sock nice = 0 [mysqld] # # * Basic Settings # user = mysql pid-file = /var/run/mysqld/mysqld.pid socket = /var/run/mysqld/mysqld.sock port = 3306 basedir = /usr datadir = /var/lib/mysql tmpdir = /tmp lc-messages-dir = /usr/share/mysql skip-external-locking # # Instead of skip-networking the default is now to listen only on # localhost which is more compatible and is not less secure. bind-address = 127.0.0.1 # # * Fine Tuning # key_buffer_size = 16M max_allowed_packet = 16M thread_stack = 192K thread_cache_size = 8 # This replaces the startup script and checks MyISAM tables if needed # the first time they are touched myisam-recover-options = BACKUP #max_connections = 100 #table_open_cache = 64 #thread_concurrency = 10 # # * Query Cache Configuration # query_cache_limit = 1M query_cache_size = 16M # # * Logging and Replication # # Both location gets rotated by the cronjob. # Be aware that this log type is a performance killer. # As of 5.1 you can enable the log at runtime! #general_log_file = /var/log/mysql/mysql.log #general_log = 1 # # Error log - should be very few entries. # log_error = /var/log/mysql/error.log # # Here you can see queries with especially long duration #slow_query_log = 1 #slow_query_log_file = /var/log/mysql/mysql-slow.log #long_query_time = 2 #log-queries-not-using-indexes # # The following can be used as easy to replay backup logs or for replication. # note: if you are setting up a replication slave, see README.Debian about # other settings you may need to change. #server-id = 1 #log_bin = /var/log/mysql/mysql-bin.log expire_logs_days = 10 max_binlog_size = 100M #binlog_do_db = include_database_name #binlog_ignore_db = include_database_name # # * InnoDB # # InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/. # Read the manual for more InnoDB related options. There are many! # default-storage-engine = INNODB character_set_server = utf8mb4 collation-server = utf8mb4_bin innodb_default_row_format = DYNAMIC innodb_large_prefix = ON innodb_file_format = Barracuda innodb_log_file_size = 2G max_allowed_packet = 256M binlog_format = row transaction-isolation = READ-COMMITTED sql_mode = NO_AUTO_VALUE_ON_ZERO # * Security Features # # Read the manual, too, if you want chroot! # chroot = /var/lib/mysql/ # # For generating SSL certificates I recommend the OpenSSL GUI "tinyca". # # ssl-ca=/etc/mysql/cacert.pem # ssl-cert=/etc/mysql/server-cert.pem # ssl-key=/etc/mysql/server-key.pem $ $ sudo systemctl restart mysql.service $ $ mysql -uroot -p Enter password: mypass Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 Server version: 5.7.42-0ubuntu0.18.04.1 (Ubuntu) Copyright (c) 2000, 2023, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> mysql> use mysql; mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mypass'; mysql> flush privileges; mysql> mysql> CREATE DATABASE jira CHARACTER SET utf8mb4 COLLATE utf8mb4_bin; mysql> create user 'jira'@'localhost' identified by 'jrpass'; mysql> GRANT ALL PRIVILEGES ON jira.* TO 'jira'@'localhost' WITH GRANT OPTION; mysql> mysql> CREATE DATABASE confluence CHARACTER SET utf8mb4 COLLATE utf8mb4_bin; mysql> create user 'confluence'@'localhost' identified by 'cfpass'; mysql> GRANT ALL PRIVILEGES ON confluence.* TO 'confluence'@'localhost' WITH GRANT OPTION; mysql> mysql> flush privileges; mysql> mysql> exit; $ $
3. 安装 jira 和 confluence
$ $ cd atlassian/ ~/atlassian$ ~/atlassian$ sudo ./Install.sh [ Info ] parsing enrty [ Info ] please select function 1) install 2) generate_lic #? 1 [ Info ] Initing env [ Info ] create folder `/opt/atlassian` [ Info ] create agent `/opt/atlassian/atlassian-agent.jar` [ Success ] Inited env [ Warning ] software not found : `/opt/atlassian/jira` [ Warning ] software not found : `/opt/atlassian/atlassian-crowd*` [ Warning ] software not found : `/opt/atlassian/bitbucket` [ Warning ] software not found : `/opt/atlassian/confluence` [ Success ] Install Ready ~/atlassian$ ~/atlassian$ sudo ./atlassian-jira-software-8.13.7-x64.bin Unpacking JRE ... Starting Installer ... This will install Jira Software 8.13.7 on your computer. OK [o, Enter], Cancel [c] Click Next to continue, or Cancel to exit Setup. Choose the appropriate installation or upgrade option. Please choose one of the following: Express Install (use default settings) [1], Custom Install (recommended for advanced users) [2, Enter], Upgrade an existing Jira installation [3] Select the folder where you would like Jira Software to be installed. Where should Jira Software be installed? [/opt/atlassian/jira] Default location for Jira Software data [/var/atlassian/application-data/jira] Configure which ports Jira Software will use. Jira requires two TCP ports that are not being used by any other applications on this machine. The HTTP port is where you will access Jira through your browser. The Control port is used to startup and shutdown Jira. Use default ports (HTTP: 8080, Control: 8005) - Recommended [1, Enter], Set custom value for HTTP and Control ports [2] Jira can be run in the background. You may choose to run Jira as a service, which means it will start automatically whenever the computer restarts. Install Jira as Service? Yes [y, Enter], No [n] Details on where Jira Software will be installed and the settings that will be used. Installation Directory: /opt/atlassian/jira Home Directory: /var/atlassian/application-data/jira HTTP Port: 8080 RMI Port: 8005 Install as service: Yes Install [i, Enter], Exit [e] Extracting files ... Please wait a few moments while Jira Software is configured. Installation of Jira Software 8.13.7 is complete Start Jira Software 8.13.7 now? Yes [y, Enter], No [n] n Please wait a few moments while Jira Software starts up. Launching Jira Software ... Installation of Jira Software 8.13.7 is complete Your installation of Jira Software 8.13.7 is now ready and can be accessed via your browser. Jira Software 8.13.7 can be accessed at http://localhost:8080 Finishing installation ... ~/atlassian$ ~/atlassian$ sudo ./atlassian-confluence-7.4.8-x64.bin Unpacking JRE ... Starting Installer ... This will install Confluence 7.4.8 on your computer. OK [o, Enter], Cancel [c] Click Next to continue, or Cancel to exit Setup. Choose the appropriate installation or upgrade option. Please choose one of the following: Express Install (uses default settings) [1], Custom Install (recommended for advanced users) [2, Enter], Upgrade an existing Confluence installation [3] Select the folder where you would like Confluence 7.4.8 to be installed, then click Next. Where should Confluence 7.4.8 be installed? [/opt/atlassian/confluence] Default location for Confluence data [/var/atlassian/application-data/confluence] Configure which ports Confluence will use. Confluence requires two TCP ports that are not being used by any other applications on this machine. The HTTP port is where you will access Confluence through your browser. The Control port is used to Startup and Shutdown Confluence. Use default ports (HTTP: 8090, Control: 8000) - Recommended [1, Enter], Set custom value for HTTP and Control ports [2] Confluence can be run in the background. You may choose to run Confluence as a service, which means it will start automatically whenever the computer restarts. Install Confluence as Service? Yes [y, Enter], No [n] Extracting files ... Please wait a few moments while we configure Confluence. Installation of Confluence 7.4.8 is complete Start Confluence now? Yes [y, Enter], No [n] n Please wait a few moments while Confluence starts up. Launching Confluence ... Installation of Confluence 7.4.8 is complete Your installation of Confluence 7.4.8 is now ready and can be accessed via your browser. Confluence 7.4.8 can be accessed at http://localhost:8090 Finishing installation ... ~/atlassian$
~/atlassian$ ~/atlassian$ sudo /etc/init.d/jira stop executing using dedicated user `sMMMMMMMMMMMMMM+ MMMMMMMMMMMMMM :sdMMMMMMMMMMM MMMMMM `sMMMMMMMMMMMMMM+ MMMMMM MMMMMMMMMMMMMM +MMMMM :sMMMMMMMMMMM MMMMM MMMMMM `UOJ `sMMMMMMMMMMMMM+ MMMMMM MMMMMMMMMMMMMM +MMMMM :sdMMMMMMMMMM MMMMM MMMMMM `UOJ MMMMMM +MMMMM MMMMM `UOJ Atlassian Jira Version : 8.13.7 If you encounter issues starting or stopping Jira, please see the Troubleshooting guide at https://docs.atlassian.com/jira/jadm-docs-0813/Troubleshooting+installation Server startup logs are located in /opt/atlassian/jira/logs/catalina.out Using CATALINA_BASE: /opt/atlassian/jira Using CATALINA_HOME: /opt/atlassian/jira Using CATALINA_TMPDIR: /opt/atlassian/jira/temp Using JRE_HOME: /opt/atlassian/jira/jre/ Using CLASSPATH: /opt/atlassian/jira/bin/bootstrap.jar:/opt/atlassian/jira/bin/tomcat-juli.jar Using CATALINA_OPTS: Using CATALINA_PID: /opt/atlassian/jira/work/catalina.pid Tomcat stopped. ~/atlassian$ ~/atlassian$ sudo /etc/init.d/confluence stop executing using dedicated user If you encounter issues starting up Confluence, please see the Installation guide at http://confluence.atlassian.com/display/DOC/Confluence+Installation+Guide Server startup logs are located in /opt/atlassian/confluence/logs/catalina.out --------------------------------------------------------------------------- Using Java: /opt/atlassian/confluence/jre//bin/java 2025-03-07 22:27:26,309 INFO [main] [atlassian.confluence.bootstrap.SynchronyProxyWatchdog] A Context element for ${confluence.context.path}/synchrony-proxy is found in /opt/atlassian/confluence/conf/server.xml. No further action is required --------------------------------------------------------------------------- Using CATALINA_BASE: /opt/atlassian/confluence Using CATALINA_HOME: /opt/atlassian/confluence Using CATALINA_TMPDIR: /opt/atlassian/confluence/temp Using JRE_HOME: /opt/atlassian/confluence/jre/ Using CLASSPATH: /opt/atlassian/confluence/bin/bootstrap.jar:/opt/atlassian/confluence/bin/tomcat-juli.jar Using CATALINA_OPTS: -XX:ReservedCodeCacheSize=256m -XX:+UseCodeCacheFlushing -Djdk.tls.server.protocols=TLSv1.1,TLSv1.2 -Djdk.tls.client.protocols=TLSv1.1,TLSv1.2 -Dconfluence.context.path= -Djava.locale.providers=JRE,SPI,CLDR -Dorg.apache.tomcat.websocket.DEFAULT_BUFFER_SIZE=32768 -Dsynchrony.enable.xhr.fallback=true -Xms1024m -Xmx1024m -XX:+UseG1GC -Datlassian.plugins.enable.wait=300 -Djava.awt.headless=true -XX:G1ReservePercent=20 -Xloggc:/opt/atlassian/confluence/logs/gc-2025-03-07_22-27-26.log -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=2M -Xlog:gc+age=debug:file=/opt/atlassian/confluence/logs/gc-2025-03-07_22-27-26.log::filecount=5,filesize=2M -XX:-PrintGCDetails -XX:+PrintGCDateStamps -XX:-PrintTenuringDistribution -XX:+IgnoreUnrecognizedVMOptions Using CATALINA_PID: /opt/atlassian/confluence/work/catalina.pid NOTE: Picked up JDK_JAVA_OPTIONS: --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED Tomcat stopped. ~/atlassian$ ~/atlassian$ ~/atlassian$ sudo ./Install.sh [ Info ] parsing enrty [ Info ] please select function 1) install 2) generate_lic #? 1 [ Info ] Initing env [ Success ] Inited env [ Info ] Init jira [ Info ] backup `/opt/atlassian/jira/bin/setenv.sh` [ Info ] `/opt/atlassian/jira/bin/setenv.sh` patching [ Success ] `/opt/atlassian/jira/bin/setenv.sh` patched [ Info ] backup `/opt/atlassian/jira/conf/server.xml` [ Info ] `/opt/atlassian/jira/conf/server.xml` patching [ Success ] `/opt/atlassian/jira/conf/server.xml` patched [ Success ] Inited jira [ Warning ] software not found : `/opt/atlassian/atlassian-crowd*` [ Warning ] software not found : `/opt/atlassian/bitbucket` [ Info ] Init confluence [ Info ] backup `/opt/atlassian/confluence/bin/setenv.sh` [ Info ] `/opt/atlassian/confluence/bin/setenv.sh` patching [ Success ] `/opt/atlassian/confluence/bin/setenv.sh` patched [ Info ] backup `/opt/atlassian/confluence/conf/server.xml` [ Info ] `/opt/atlassian/confluence/conf/server.xml` patching [ Success ] `/opt/atlassian/confluence/conf/server.xml` patched [ Success ] Inited confluence [ Success ] Install Ready ~/atlassian$ ~/atlassian$
~/atlassian$ ~/atlassian$ sudo cp mysql-connector-java-8.0.22.jar /opt/atlassian/jira/atlassian-jira/WEB-INF/lib/ ~/atlassian$ ~/atlassian$ sudo cp mysql-connector-java-8.0.22.jar /opt/atlassian/confluence/confluence/WEB-INF/lib/ ~/atlassian$ ~/atlassian$ sudo vi /opt/atlassian/jira/conf/server.xml ~/atlassian$ ~/atlassian$ sudo vi /opt/atlassian/confluence/conf/server.xml ~/atlassian$ ~/atlassian$ sudo cat /opt/atlassian/jira/conf/server.xml <?xml version="1.0" encoding="utf-8"?> <Server port="8005" shutdown="SHUTDOWN"> <Listener className="org.apache.catalina.startup.VersionLoggerListener"/> <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on"/> <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener"/> <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/> <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener"/> <Service name="Catalina"> <Connector port="8080" relaxedPathChars="[]|" relaxedQueryChars="[]|{}^\`"<>" maxThreads="150" minSpareThreads="25" connectionTimeout="20000" enableLookups="false" maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPort="8443" acceptCount="100" disableUploadTimeout="true" bindOnInit="false" scheme="http"/> <Engine name="Catalina" defaultHost="localhost"> <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Context path="" docBase="${catalina.home}/atlassian-jira" reloadable="false" useHttpOnly="true"> <Resource name="UserTransaction" auth="Container" type="javax.transaction.UserTransaction" factory="org.objectweb.jotm.UserTransactionFactory" jotm.timeout="60"/> <Manager pathname=""/> <JarScanner scanManifest="false"/> <Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" threshold="120" /> </Context> </Host> <Valve className="org.apache.catalina.valves.AccessLogValve" pattern="%a %{jira.request.id}r %{jira.request.username}r %t "%m %U%q %H" %s %b %D "%{Referer}i" "%{User-Agent}i" "%{jira.request.assession.id}r""/> </Engine> </Service> </Server> ~/atlassian$ ~/atlassian$ sudo cat /opt/atlassian/confluence/conf/server.xml <Server port="8000" shutdown="SHUTDOWN" debug="0"> <Service name="Tomcat-Standalone"> <Connector port="8090" connectionTimeout="20000" redirectPort="8443" maxThreads="48" minSpareThreads="10" enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8" protocol="org.apache.coyote.http11.Http11NioProtocol"/> <Engine name="Standalone" defaultHost="localhost" debug="0"> <Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="false" startStopThreads="4"> <Context path="" docBase="../confluence" debug="0" reloadable="false" useHttpOnly="true"> <Manager pathname=""/> <Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" threshold="60"/> </Context> <Context path="${confluence.context.path}/synchrony-proxy" docBase="../synchrony-proxy" debug="0" reloadable="false" useHttpOnly="true"> <Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" threshold="60"/> </Context> </Host> </Engine> </Service> </Server> ~/atlassian$
~/atlassian$ ~/atlassian$ sudo systemctl stop jira.service ~/atlassian$ ~/atlassian$ sudo systemctl stop confluence.service ~/atlassian$ ~/atlassian$ sudo systemctl start jira.service ~/atlassian$ ~/atlassian$ sudo systemctl start confluence.service ~/atlassian$
~/atlassian$ ~/atlassian$ sudo ./Install.sh [ Info ] parsing enrty [ Info ] please select function 1) install 2) generate_lic #? 2 [ Info ] please select which product to process 1) jira 2) crowd 3) bitbucket 4) confluence #? 4 please input serial number : BO3V-7OXW-F3GS-YQLP ==================================================== ======= Atlassian Crack Agent v1.3.1 ======= ======= https://zhile.io ======= ======= QQ Group: 30347511 ======= ==================================================== Your license code(Don't copy this line!!!): AAABhw0ODAoPeJxtUV1vgjAUfe+vINkzWwEVNWkyBZwakDl0H09Lh9fRrBTWFhV//VAxWZY9NT0n9 56PezORzIioNLBr2M4Qd4fYNrxkZdjY7iJPAtWsED7VQE6IiR0TuyjYUV6dGbKlXAHyQaWSlWdkL TjLmYaNwVkKQoHxURuZ1qUa3t0dM8bhlhUolp9UMHVZcmXhkNOy4dMiR2khtrc01WwHRMsKkFcI3 fyDiDJORCGh5PX974lWbkpVRiJv703G/GkflMfguA4OSzz9rno0xvh7p4+LUbYEOV/B+DPqrn0u3 Lm34Z1sOZ8+bHojQi7yiaZSg2xDnqHwIrKqS1jQHIgXR1Hw5M1GIWqMCQ2CihSCQ8lk3dbWHzSdn WprZ2c+CWd+EizM0HI7ltMdDLBtd/ooAbkD2dDj2Hk23fj1xZw4D4n5tgwf0RfUzyDVqS6rh7GL+ 45jXVf+r/dYyTSjCv6ery3qus6+JFtU+QfIeLtWDU5MCzUOyT8u2zuc0+f1u2jeH5OmviQwLAIUd dYWqQOhKT3DLSoSyLrHQvZFCIoCFE8lyUQn1htQz6SAgjZcm70WrFMTX02iu ~/atlassian$ ~/atlassian$ sudo ./Install.sh [ Info ] parsing enrty [ Info ] please select function 1) install 2) generate_lic #? 2 [ Info ] please select which product to process 1) jira 2) crowd 3) bitbucket 4) confluence #? 1 please input serial number : BDVA-8DGC-5937-WRH8 ==================================================== ======= Atlassian Crack Agent v1.3.1 ======= ======= https://zhile.io ======= ======= QQ Group: 30347511 ======= ==================================================== Your license code(Don't copy this line!!!): AAAB0A0ODAoPeJx9UtGOojAUfecrSPYZLTIOatJkEZiRLOhk0PFxUvEinYVCbosr+/WLiomzGp+aN j3nnnPu+fGCXI8Y6sTWB9aEPE+GY92Nl/qADIbaDgFEVlYVYC/kCQgJy6aCOSuAuoso8t/dwAk1F 4EpXgqPKaBHoEEsg9jaA4gHMkFeHVF0JXJecAVbPT8D9E2jZ0pVctLv/814Dj1eahHjQoFgIgH/U HFsummjcTvqOO2LI7uo9Lf8TD0PgyhY+p42r4sN4CJdSUBJDfMi7gFXheW2TlTveDFkmao/DKF3Q /TgL0sU3wNVWMO3LK/fO88fLdtR8UDz9yyvT3nSlOUStAXumODy/HTJBQ4Fq9pkkrLQ3FKoltJvI 8qpKBGqvPl5/eEk8UZ4N3nGZEYjl7gvr+v9NHTrrIHZJrVcjMdf9nAPyxL7TrZydhyD5tdBvZFtM EvXzmKaNhBlUe3v6HnEta8HscSKoQLs7HWLCDwaBl7sz43QtJ9M65kQc2yS4be93qtSDLgHbOFT7 8MxRt6rawzHlm2s32cj7Tc0l2TNltEmI8sy7/X6tjFvNSYZk/B/q6/B0FYSK+SyM93Kp3csdAs6K S+aT9Ge/wD3gC6LMCwCFBVkWw9oY2PFZzozxeN0kEZkaMjoAhRkgqILQB2mOPv3aqyPPFk9fQzzw A==X02m6 ~/atlassian$ ~/atlassian$ curl -ikIL http://127.0.0.1:8080/secure/admin/ViewApplicationProperties.jspa HTTP/1.1 302 X-AREQUESTID: 1396x517x1 Referrer-Policy: strict-origin-when-cross-origin X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN Content-Security-Policy: frame-ancestors 'self' Strict-Transport-Security: max-age=31536000 Cache-Control: no-cache, no-store, must-revalidate Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: JSESSIONID=452C74F3E12E58F0D700AF7C44989F2A; Path=/; HttpOnly Location: /login.jsp?permissionViolation=true&os_destination=%2Fsecure%2Fadmin%2FViewApplicationProperties.jspa&page_caps=&user_role=ADMIN Content-Type: text/html;charset=UTF-8 Transfer-Encoding: chunked Date: Fri, 07 Mar 2025 15:16:14 GMT HTTP/1.1 200 X-AREQUESTID: 1396x518x1 Referrer-Policy: strict-origin-when-cross-origin X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN Content-Security-Policy: frame-ancestors 'self' Strict-Transport-Security: max-age=31536000 Cache-Control: no-cache, no-store, must-revalidate Pragma: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: atlassian.xsrf.token=BDVA-8DGC-5937-WRH8_187b085d5d80914f5e704f49c61a9f58ef6fbeb5_lout; Path=/ X-AUSERNAME: anonymous Set-Cookie: JSESSIONID=CA7B36A42A948518265DB076CAC4ABE9; Path=/; HttpOnly X-Atlassian-Dialog-Control: permissionviolation Content-Type: text/html;charset=UTF-8 Transfer-Encoding: chunked Date: Fri, 07 Mar 2025 15:16:14 GMT ~/atlassian$ ~/atlassian$ curl -ikIL http://127.0.0.1:8090/admin/viewgeneralconfig.action HTTP/1.1 302 Location: /bootstrap/selectsetupstep.action Content-Type: text/html;charset=UTF-8 Transfer-Encoding: chunked Date: Fri, 07 Mar 2025 15:16:31 GMT HTTP/1.1 302 Cache-Control: no-cache, must-revalidate Expires: Thu, 01 Jan 1970 00:00:00 GMT X-Confluence-Request-Time: 1741360591940 Set-Cookie: JSESSIONID=5774FAE05C7063C64E68732EEEAD94F2; Path=/; HttpOnly X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN Content-Security-Policy: frame-ancestors 'self' Location: /setup/setupusermanagementchoice-start.action Content-Type: text/html;charset=UTF-8 Transfer-Encoding: chunked Date: Fri, 07 Mar 2025 15:16:31 GMT HTTP/1.1 200 Cache-Control: no-cache, must-revalidate Expires: Thu, 01 Jan 1970 00:00:00 GMT X-Confluence-Request-Time: 1741360591947 Set-Cookie: JSESSIONID=A20945E76E716F26874632BF0C85B79D; Path=/; HttpOnly X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN Content-Security-Policy: frame-ancestors 'self' X-Accel-Buffering: no Content-Type: text/html;charset=UTF-8 Transfer-Encoding: chunked Date: Fri, 07 Mar 2025 15:16:31 GMT ~/atlassian$
# 提示: 建议设置语言和时区为中文区域,然后重建索引,并禁用数据收集的分析功能。
========= End